/* *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } */

/* .tabs-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-left: 3px solid #e8b4d8;
    padding-left: 32px;
  } */

.page-template-privacy-policy .container {
    max-width: 100% !important;
}

.page-template-privacy-policy .container a {
    color: #0055DE !important;
    text-decoration: underline !important;

}

.content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    column-gap: clamp(1.25rem, -38.4741rem + 62.069vw, 5.75rem);

    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.floating-image {
    position: relative;
    align-self: center; /* fixes the flex stretch issue */
    width: 100%;
    max-width: 285px;
    padding-top: 64px;
}

.floating-image .image-wrapper {

}

.floating-image .image-wrapper img {
    aspect-ratio: 196 / 383;
    width: 100%;
    height: 100%;
    max-height: 383px;
    object-fit: contain;
}

.floating-image .image-info h4 {
    font-size: 18px;
    color: #33312F;
    text-align: center;
    margin-top: 24px;
    font-weight: 700;
}

.floating-image .image-info p {
    line-height: 26px;
    text-align: center;
}

.floating-image .image-info .address-wrapper {
    text-align: center;
}

/* Tab Nav */

.tabs-content {
    min-width: auto;
    padding-top: 44px;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1.5px solid #e0e0e0;
    margin-bottom: 36px;
    position: relative;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 15px 10px;
    color: #aaa;
    position: relative;
    transition: color 0.3s ease;
    outline: none;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 2.5px;
    /* background: #111; */
    border-bottom: 0;
    /* transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); */
}

.tab-btn.active {
    color: #111;
}

.tab-btn.active::after {
    border-bottom: 3px solid #111;
}

.tab-btn:not(.active):hover {
    color: #555;
}

.tab-btn:focus {
    outline: none;  
}

/* Tab Panels */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    animation: none;
}

.tab-panel h3 {
    font-size: 28px !important;
    color: #33312F !important;
    font-weight: 700 !important;
}

.tab-panel#tab-privacy ul {
    list-style: upper-alpha !important; 
    list-style-position: outside !important;                                                                                                                                                                                                                   list-style-position: outside;                                                                                                                                                                                                                 
    padding-left: 20px;
}

.tab-panel ul li {
    font-weight: 600;
    color: #000;
    text-align: left;
    padding-left: 5px;
}

.tab-panel.active {
    display: block;
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tab-panel#tab-cctv ul:nth-of-type(4) {
    padding: 0; 
    counter-reset: rights-counter; 
    list-style: upper-alpha !important; 
    margin-left: 20px;
}

.tab-panel#tab-cctv ul:nth-of-type(4) li {
    counter-increment: rights-counter;
    margin-bottom: 20px;
}

.tab-panel .text-content ol {
    padding-left: 15px;
}

.tab-panel .text-content strong {
    display: block;
}

.tab-panel .text-content h4 {
    font-size: 18px;
    color: #33312F
}

.tab-panel .text-content h4 ~ p {
    margin-bottom: 0 !important;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Content Styles */

.tab-panel h2 {
    font-size: 35px !important;
    font-weight: 500 !important;
    line-height: 40px !important;
    color: #33312F !important;
    padding-bottom: 24px;
    position: absolute;
    top: -665px;
    width: 100%;
    text-align: center;
}

.tab-panel p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.tab-panel p:last-child { margin-bottom: 0; }

.tab-panel ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.tab-panel ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 6px;
}

.highlight-box {
    background: #fdf5fa;
    border-left: 3px solid #e8b4d8;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

@media (min-width: 1024px) {
    .tabs-content {
        min-width: 728px;
    }
}

@media (min-width: 768px) {
    .tab-panel h2 {
        font-size: 53px !important;
    }
}

@media (min-width: 640px) {
    .floating-image {
        position: sticky;
        top: 20px; /* required — adjust to your offset */
        align-self: flex-start; /* fixes the flex stretch issue */
        width: 100%;
        max-width: 285px;
        padding-top: 0;
    }

    .content-container {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: center;
        column-gap: clamp(1.25rem, -38.4741rem + 62.069vw, 5.75rem);

        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        margin-right: auto;
        margin-left: auto;
        max-width: 1140px;
    }

    .tabs-content {
        padding-top: 0;
    }

    .tab-btn {
        font-size: 32px;
        padding: 12px 28px 10px;
    }

    .tab-panel h2 {
        position: relative;
        top: 0;
        text-align: start;
    }

}