:root {
    --main-color: orange;
}

.contact-pg .butn:hover {
    background: var(--main-color) !important;
}
.team-mp .item {
    height: 400px;
    overflow: hidden !important;
}
.team-portrait {
    height: 100% !important;
}
.team-portrait img {
    max-height: 100% !important;
}
.services-dm .item .title h2 {
    font-size: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (max-width: 768px) {
    .services-dm .item .title h2 {
        font-size: 30px;
    }
}
.alert-success {
    color: #d1e7dd;
    background-color: rgba(25, 135, 84, 0.2);
    border-color: #198754;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.3);
    text-shadow: 0 0 10px rgba(209, 231, 221, 0.5);
}

.alert-danger {
    color: #f8d7da;
    background-color: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
    text-shadow: 0 0 10px rgba(248, 215, 218, 0.5);
}

.alert-danger ul {
    margin-top: 10px;
    padding-left: 20px;
}

.alert-danger li {
    margin-bottom: 5px;
}

/* Privacy Checkbox Styling */
.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.6;
}

.privacy-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.privacy-checkbox-text {
    position: relative;
    padding-left: 32px;
    user-select: none;
}

.privacy-checkbox-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.privacy-checkbox:checked + .privacy-checkbox-text::before {
    background: var(--main-color, orange);
    border-color: var(--main-color, orange);
}

.privacy-checkbox:checked + .privacy-checkbox-text::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: -1px;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

.privacy-checkbox-label:hover .privacy-checkbox-text::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.privacy-checkbox-label a {
    /* color: var(--main-color, orange); */
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-checkbox-label a:hover {
    opacity: 0.8;
}
.ls05 {
    letter-spacing: 0.5px !important;
}
h1, h2, h3, h4, h5,h6, p {
    letter-spacing: 0.5px !important;
}

/* ==================== Custom layout overrides ==================== */

/* Show CTA circle button below heading on mobile, centered */
@media (max-width: 768px) {
    .footer-sa .call-action h2 {
        font-size: 48px;
        line-height: 1.1;
    }
    .footer-sa .call-action h2 .buton {
        position: static;
        margin: 32px auto 0;
        width: 180px;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Team header image: full width, no cropping */
    .team-hed .fit-img {
        margin-top: 20px;
        height: auto;
    }
    .team-hed .fit-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Services header image: full width, no cropping */
    .serv-hed2 .fit-img {
        margin-top: 20px;
        height: auto;
    }
    .serv-hed2 .fit-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Footer alignment on mobile */
    .footer-sa .sub-footer .copy p {
        text-align: center;
    }
    .footer-sa .sub-footer .links {
        text-align: center;
        justify-content: center;
    }
}

/* Home: fix Services button shape/alignment */
#services .sec-head .butn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#services .sec-head .butn span {
    white-space: nowrap;
}