html,
body {
    background-color: #000000;
    color: #ECEFF1;
}

.services-hero {
    background-color: #000000;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    text-align: center;
    padding: 60px 20px;
}

.services-hero h2 {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.2em;
    margin-bottom: 14px;
}

.services-hero p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 6px;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    background-color: #000000;
}

.service-block {
    background-color: #111111;
    border: 1px solid #2d2d2d;
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/HARMONY LOGO 1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-block:hover::before {
    opacity: 0.15;
}

.service-symbol,
.service-block h3,
.service-block p,
.service-block ul {
    position: relative;
    z-index: 1;
}

.service-symbol {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35em;
    background-color: #1f1f1f;
    border: 1px solid #3a3a3a;
    margin-bottom: 12px;
}

.service-block h3 {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 1.15em;
    line-height: 1.4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-block h3::after {
    content: '+';
    color: #FFD700;
    font-size: 1.2rem;
    line-height: 1;
}

.service-block h3:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.service-block p {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-block ul {
    padding-left: 20px;
    color: #ECEFF1;
    line-height: 1.7;
}

.service-block p,
.service-block ul {
    display: none;
}

.service-block.is-open p,
.service-block.is-open ul {
    display: block;
}

.service-block.is-open h3::after {
    content: '-';
}

.services-cta {
    text-align: center;
    background-color: #0a0a0a;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    padding: 55px 20px;
}

.services-cta h3 {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.services-cta p {
    max-width: 760px;
    margin: 0 auto 22px;
    color: #cccccc;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #FFD700;
    color: #000000;
    font-weight: bold;
    padding: 12px 26px;
    border-radius: 6px;
}

.cta-btn:hover {
    background-color: #e7c300;
}

@media (max-width: 768px) {
    .services-hero h2 {
        font-size: 1.8em;
    }

    .services-page {
        grid-template-columns: 1fr;
        padding: 35px 14px;
    }
}
