.works-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.works-btn {
    padding: 10px 18px;
    border: none;
    background: var(--card);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.25s;
}

.works-btn.active,
.works-btn:hover {
    background: var(--primary);
    color: white;
}

.works-sections {
    margin-top: 40px;
}

.works-section {
    display: none;
    align-items: center;
    gap: 40px;
}

.works-section.active {
    display: flex;
}

.works-content {
    flex: 1;
}

.works-content h2 {
    margin-bottom: 15px;
}

.works-content ul {
    line-height: 1.8;
}

.works-image {
    flex: 1;
}

.works-image img {
    width: 100%;
    border-radius: 12px;
}


/* MOBILE */

@media (max-width: 768px) {
    .works-section {
        flex-direction: column;
        text-align: center;
    }
}

.works-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.works-content ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    /* centers the whole row */
    gap: 10px;
    /* space between check + text */
    margin-bottom: 10px;
    text-align: center;
}


/* Blue checkmark */

.works-content ul li::before {
    content: "✔";
    color: var(--primary);
    font-weight: bold;
}

.maps-content {
    padding: 70px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: left;
}

.maps-title {
    /* font-size: 34px; */
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text);
}


/* Paragraph spacing + readability */

.maps-content p {
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: var(--text);
    opacity: 0.9;
}


/* Responsive */

@media (max-width: 768px) {
    .maps-title {
        font-size: 24px;
    }
    .maps-content p {
        font-size: 15px;
    }
}

.maps-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maps-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 16px;
    color: var(--text);
    opacity: 0.9;
}


/* Blue checkmark */

.maps-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}