/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-bottom: 4px solid #d4af37;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    font-style: italic;
}

.last-updated {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 20px;
    font-weight: 300;
}

/* Main Content */
.content {
    padding: 50px 40px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.policy-section p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05rem;
    color: #333;
}

.policy-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

/* Important Notice Box */
.important-notice {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.important-notice p {
    margin: 0;
    color: #856404;
}

/* Contact Info Box */
.contact-info {
    background: #f8f9fa;
    border-left: 5px solid #1e3c72;
    padding: 20px;
    margin-top: 15px;
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 10px;
    text-align: left;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #1e3c72;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a5298;
}

/* Strong/Bold Text */
strong {
    color: #1e3c72;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 25px 40px;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 0;
    }

    .header {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .content {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }

    .policy-section ul {
        margin-left: 20px;
    }

    .footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}