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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Container */
.edupass-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

/* Content Wrapper */
.policy-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 48px;
    margin-bottom: 40px;
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e9ecef;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.policy-date {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

/* Section */
.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 16px;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Lists */
.policy-list,
.service-list {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-list li,
.service-list li {
    font-size: 1rem;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 8px;
}

.policy-list li:last-child,
.service-list li:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    background-color: #f8f9fa;
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
}

.highlight-box .service-list {
    margin-bottom: 0;
}

.highlight-box .service-list li a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.highlight-box .service-list li a:hover {
    color: #0056b3;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.info-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
}

.info-card-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
}

.contact-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
    margin-top: 16px;
}

.contact-info {
    font-size: 1rem;
    color: #495057;
    margin: 0;
}

.contact-info strong {
    color: #212529;
    margin-right: 8px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .edupass-policy-container {
        padding: 24px 16px;
    }

    .policy-content {
        padding: 32px 24px;
        border-radius: 8px;
    }

    .policy-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text,
    .policy-list li,
    .service-list li {
        font-size: 0.95rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card {
        padding: 20px;
    }

    .contact-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .edupass-policy-container {
        padding: 16px 12px;
    }

    .policy-content {
        padding: 24px 16px;
    }

    .policy-title {
        font-size: 1.75rem;
    }

    .policy-date {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-text,
    .policy-list li,
    .service-list li {
        font-size: 0.9rem;
    }

    .highlight-box,
    .contact-box {
        padding: 16px;
    }

    .info-card {
        padding: 16px;
    }
}

/* Print Styles */
@media print {
    .edupass-policy-container {
        max-width: 100%;
        padding: 0;
    }

    .policy-content {
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
    }

    .info-card {
        break-inside: avoid;
    }

    .policy-section {
        break-inside: avoid;
    }
}

