/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Navigation */
.header {
    background-color: #000000;
    padding: 1rem 0;
    color: #fff;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    font-size: 1.5rem;
    color: #ecf0f1;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    color: #ecf0f1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1abc9c;
}

/* Main Content */
.privacy-main {
    padding: 2rem 1rem;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-main h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.privacy-content p {
    margin: 0.5rem 0 1.2rem;
    font-size: 1rem;
    color: #555;
}

/* Email link style */
.__cf_email__ {
    word-break: break-all;
    font-weight: 500;
    color: #007BFF;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

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

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content p {
        font-size: 0.95rem;
    }
}

/************Terms***********/

/* Terms Main Section */
.terms-main {
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.terms-main .container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-main h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
}

.terms-content h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.terms-content p {
    margin: 0.5rem 0 1.2rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-main h1 {
        font-size: 2rem;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }

    .terms-content p {
        font-size: 0.95rem;
    }
}
/* Newsletter Main Section */
.newsletter-main {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
}

.newsletter-section {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-section h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-section p {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Styles */
.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="date"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #007BFF;
    outline: none;
}

/* Checkbox group */
.checkbox-group {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007BFF;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Message Box (for success/error feedback) */
.form-message {
    margin-top: 1.5rem;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .newsletter-section {
        padding: 1.5rem;
    }

    .newsletter-section h1 {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 0.95rem;
    }
}
