/* =========================
   TERMS OF SERVICE CONTAINER
========================= */
.policy-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 35px;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #333;
    line-height: 1.9;
}

/* =========================
   MAIN TITLE
========================= */
.policy-container h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

/* =========================
   SECTION HEADINGS
========================= */
.policy-container h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #111827;
}

/* =========================
   PARAGRAPHS
========================= */
.policy-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

/* =========================
   LISTS
========================= */
.policy-container ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.policy-container ul li {
    margin-bottom: 10px;
    font-size: 15.5px;
    color: #555;
}

/* =========================
   STRONG TEXT
========================= */
.policy-container strong {
    color: #111827;
}

/* =========================
   CONTACT SECTION (BOTTOM)
========================= */
.policy-container p:last-of-type {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 15.5px;
    color: #555;
}




/* =========================
   SEARCH DROPDOWN
========================= */
#searchResults.dropdown-results {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: max-content;
    width: max-content;
    min-width: 180px;
    max-width: 320px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background-color: #000 !important;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2px;
    overflow: auto;
    max-height: 180px;
    z-index: 999;
    display: none;
    animation: dropdownFade 0.18s ease-out;
}

#searchResults.dropdown-results.show {
    display: block;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

#searchResults.dropdown-results li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#searchResults.dropdown-results li:last-child {
    border-bottom: none;
}

#searchResults.dropdown-results li a {
    display: block;
    padding: 10px 18px;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

#searchResults.dropdown-results li a:hover,
#searchResults.dropdown-results li a:focus {
    background-color: #fff;
    color: #000 !important;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    .policy-container {
        max-width: 100%;
        padding: 20px 15px;
        margin: 20px auto;
    }

    .policy-container h1 {
        font-size: 24px;
    }

    .policy-container h2 {
        font-size: 18px;
        margin-top: 25px;
    }

    .policy-container p {
        font-size: 15px;
    }

    .policy-container ul li {
        font-size: 14.5px;
    }
}

body {
    position: relative;
    overflow-x: hidden;
    background: #ffffff;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Desktop */
.circle {
    width: 220px;
    height: 220px;
    background: rgba(10, 143, 74, 0.3);
    top: 180px;
    left: -70px;
    animation: breathe 6s ease-in-out infinite alternate;
}

.blob {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    top: 500px;
    right: -60px;
    animation: breathe 8s ease-in-out infinite alternate;
}

.drop {
    width: 180px;
    height: 180px;
    background: rgba(10, 143, 74, 0.3);
    top: 850px;
    left: -50px;
    animation: breathe 7s ease-in-out infinite alternate;
}

.dot {
    width: 200px;
    height: 200px;
    background: rgba(10, 143, 74, 0.3);
    bottom: 630px;
      right: -60px;

    animation: breathe 9s ease-in-out infinite alternate;
}

@keyframes breathe {
    0%   { transform: scale(1); opacity: 0.8; }
    50%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Mobile layout */
@media (max-width: 768px) {
    .circle {
        width: 120px;
        height: 120px;
        top: 800px;       /* higher so it’s visible */
        left: 0px;      /* pulled inside screen */
    }

    .blob {
        width: 110px;
        height: 110px;
        top: 300px;      /* evenly spaced below circle */
        right: 0px;     /* inside screen */
    }

    .drop {
        width: 100px;
        height: 100px;
        top: 1800px;      /* evenly spaced below blob */
        left: 0px;
    }

    .dot {
        width: 110px;
        height: 110px;
        bottom: 1700px;      /* evenly spaced below drop */
        right: 0px;
    }
}
