* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    padding: 2rem;
}

.page-wrapper {
    width: 100%;
    max-width: 800px;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #21759b;
    /* WordPress blue */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #464646;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.htmlcss-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.htmlcss-logo img {
    width: 70px;
    height: 70px;
}

.accordion-container {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-item {
    /* margin-bottom: 8px; */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Rotate icon when active */
.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    z-index: 2;
}

.accordion-body {
    padding: 0 30px 0px 30px;
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

.links-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.img-fluid {
    width: 22rem;
    height: auto;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-item.active .accordion-icon::after {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
}

/* Background images and blur effect */
.accordion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.accordion-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

/* Steps styling */
.steps-list {
    list-style-type: none;
    margin-top: 10px;
}

.steps-list li {
    margin-bottom: 15px;
}

strong {
    color: #4CAF50;
    display: inline-block;
}