:root {
    --primary-color: #1b0a3b;
    --secondary-color: #ffcace;
}

* {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
}

h2, h3, h4 {
    margin-bottom: 15px;
    font-style: italic;
}

.services-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}

.services-container {
    width: 90%;
    max-width: 700px;
    text-align: left;
}

.services-list {
    list-style: none;
    padding: 0;
}

.service-item {
    margin-bottom: 10px;
}

.service-btn {
    width: 100%;
    display: flex;
    align-items: center;
    background: none;
    color: var(--primary-color);
    font-size: 20px;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #1b0a3b6c;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn::after {
    content: "▼";
    margin-left: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-btn.active::after {
    transform: rotate(180deg);
}

/* .service-info {
    display: none;
    background: #f8f9fa;
    padding: 10px;
    border-left: 4px solid #007bff;
    margin-top: 5px;
    border-radius: 5px;
    text-align: left;
} */

.service-info {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: none;
    padding: 0 10px;
    border-radius: 5px;
    text-align: left;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease;
}

.service-info.open {
    max-height: 500px;
    opacity: 1;
    padding: 10px 20px;
}

@media (max-width: 767px) {
    header {
        background-color: var(--bg-color);
    }

    .hamburger {
        color: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .services-page {
        padding-top: 5rem;
    }
}