body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.privacy-section {
    display: flex;
    align-items: center;
    position: relative;
    min-height: clamp(300px, 40vw, 400px);
    overflow: hidden;
    padding: 0 50px; /* Adds padding to the left and right */
    margin-top: 120px;
}

.privacy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.privacy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
}

.privacy-text {
    position: relative;
    text-align: left;
    z-index: 2;
}

.privacy-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.privacy-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #000000;
}

.privacy-text .btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
}

.privacy-text .btn:hover {
    background-color: #c02c76;
}

@media (max-width: 992px) {
    .privacy-section {
        min-height: clamp(280px, 44vw, 360px);
    }
}

@media (max-width: 768px) {
    .privacy-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin-top: 96px;
    }

    .privacy-text {
        max-width: 100%;
        text-align: center;
    }

    .privacy-text h1 {
        font-size: 2rem;
    }

    .privacy-text .btn {
        margin: 0 auto; /* Center the button on smaller screens */
    }
}

.text-description {
    background-color: #ffffff;
    padding: 40px 20px;
}

.text-description .container {
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    line-height: 1.6;
}

.text-description p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.text-description a.terms-link {
    color: #007bff;
    text-decoration: none;
}

.text-description a.terms-link:hover {
    text-decoration: underline;
}

.terms-container {
    max-width: 1200px;
    margin: 32px auto 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    color: white;
}

.terms-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ef6610;
}

.terms-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.terms-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section ul li {
    font-size: 1em;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .privacy-section {
        min-height: clamp(280px, 44vw, 360px);
    }
}

@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
        margin-top: 24px;
    }

    .terms-container h1 {
        font-size: 2em;
    }

    .terms-section h2 {
        font-size: 1.5em;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 1em;
    }
}

/* Keep Terms content readable in dark mode (white card + dark text) */
body.dark-mode .terms-container {
    background: #ffffff !important;
    border-color: #dddddd !important;
}

body.dark-mode .terms-container h1 {
    color: #ffffff !important;
}

body.dark-mode .terms-container h2 {
    color: #ef6610 !important;
}

body.dark-mode .terms-container p,
body.dark-mode .terms-container li,
body.dark-mode .terms-container strong,
body.dark-mode .terms-container a {
    color: #222222 !important;
}


