/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

/* Header */
header {
    background: linear-gradient(135deg, #5DBDD6 0%, #207974 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main content */
main {
    padding: 3rem 2rem;
}

main h1 {
    color: #207974;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #5DBDD6;
    padding-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #5DBDD6;
    border-radius: 0 4px 4px 0;
}

/* Sections */
section {
    margin-bottom: 2.5rem;
}

section h2 {
    color: #207974;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #5DBDD6;
}

section h3 {
    color: #207974;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

/* Typography */
p {
    margin-bottom: 1rem;
    text-align: justify;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: #207974;
}

/* Links */
a {
    color: #5DBDD6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #207974;
    text-decoration: underline;
}

/* Contact info */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5DBDD6;
    margin: 1rem 0;
}

.contact-info.emergency {
    background: #fff5f5;
    border-left-color: #e53e3e;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #5DBDD6;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.footer-links a:hover {
    background-color: rgba(93, 189, 214, 0.1);
    text-decoration: none;
}

footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    main h1 {
        font-size: 1.8rem;
    }
    
    ul, ol {
        margin-left: 1.5rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
    }
    
    header {
        background: #5DBDD6;
        -webkit-print-color-adjust: exact;
    }
    
    footer {
        background: #2d3748;
        -webkit-print-color-adjust: exact;
    }
}

/* Coming Soon Styles */
.coming-soon-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #5DBDD6 0%, #207974 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.coming-soon-hero .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.coming-soon-hero h2 {
    color: white;
    border: none;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coming-soon-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #5DBDD6;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #207974;
    margin-bottom: 0.5rem;
    border: none;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.status-card {
    background: linear-gradient(135deg, #fff5f0 0%, #fef5e7 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ff9500;
    margin: 1.5rem 0;
}

.status-card h3 {
    color: #cc7a00;
    margin-bottom: 1rem;
    border: none;
    font-size: 1.3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5DBDD6 0%, #207974 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.note {
    background: #e6fffa;
    border: 1px solid #5DBDD6;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.note p {
    margin: 0;
    color: #207974;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-hero {
        padding: 2rem 1rem;
    }
    
    .coming-soon-hero .icon {
        font-size: 3rem;
    }
    
    .coming-soon-hero h2 {
        font-size: 1.5rem;
    }
}
