/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c7a7b;
    --secondary-color: #38b2ac;
    --accent-color: #4fd1c5;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Droid Serif',  sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.terms-conditions {
    padding: 60px 80px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    /* font-size: 42px; */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.updated-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.intro-text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.terms-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    margin-bottom: 5px;
}

.terms-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.terms-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-email {
    font-weight: 600;
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(90deg, #014994 0%, #45b876 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 95%;
    margin: 40px auto;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-title {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.newsletter-text {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.newsletter-right {
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    background: white;
    padding: 4px;
    border-radius: 5px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.email-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    padding: 12px 24px;
    background: #2abf60;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #0f4028;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .terms-conditions {
        padding: 50px 60px;
    }

    .page-title {
        font-size: 36px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .terms-conditions {
        padding: 40px 30px;
    }

    .page-title {
        font-size: 32px;
    }

    .terms-section h2 {
        font-size: 22px;
    }

    .terms-section h3 {
        font-size: 17px;
    }

    /* Newsletter Responsive */
    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .newsletter-right {
        justify-content: stretch;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .terms-conditions {
        padding: 30px 20px;
        border-radius: 0;
    }

    .page-title {
        font-size: 28px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-section h3 {
        font-size: 16px;
    }

    .terms-section p,
    .terms-section li {
        font-size: 14px;
    }

    /* Newsletter Responsive */
    .newsletter-section {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .subscribe-btn {
        width: 100%;
    }

    .newsletter-title {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    .newsletter-section {
        display: none;
    }

    .terms-conditions {
        box-shadow: none;
        padding: 0;
    }
}
h1 {
    font-size: 3rem !important;
}

h2 {
    font-size: 2rem !important;
}

p {
    font-size: 18px !important;
}