* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

header {
    background: linear-gradient(135deg, #00A9A9 0%, #008080 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e53e3e;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ministry-logo {
    flex-shrink: 0;
}

.title-section h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.title-section p {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #90cdf4;
}

.hero {
    background: linear-gradient(rgba(0, 169, 169, 0.9), rgba(0, 128, 128, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f7fafc" width="1200" height="600"/><rect fill="%23e53e3e" x="0" y="0" width="1200" height="4"/><circle fill="%23cbd5e0" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%23cbd5e0" cx="800" cy="400" r="60" opacity="0.3"/><circle fill="%23cbd5e0" cx="1000" cy="200" r="40" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-top: 4px solid #e53e3e;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #38a169;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.cta-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.services {
    padding: 5rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.service-card h3 {
    color: #00A9A9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

.doctors {
    padding: 5rem 0;
    background: #f7fafc;
}

.doctors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.doctor-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.doctor-card h3 {
    color: #00A9A9;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.doctor-card p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.appointment {
    padding: 5rem 0;
    background: white;
}

.appointment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.appointment-form button {
    width: 100%;
    background: #3182ce;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mhrs-info {
    max-width: 800px;
    margin: 0 auto;
}

.mhrs-info h3 {
    color: #00A9A9;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mhrs-info > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #4a5568;
    font-size: 1.1rem;
}

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

.mhrs-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.mhrs-option:hover {
    transform: translateY(-5px);
    border-color: #3182ce;
}

.mhrs-option h4 {
    color: #00A9A9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mhrs-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mhrs-button {
    display: inline-block;
    background: #00A9A9;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mhrs-button:hover {
    background: #008080;
    transform: translateY(-2px);
}

.phone-button {
    background: #38a169;
}

.phone-button:hover {
    background: #2f855a;
}

.app-info {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.important-note {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #e53e3e;
}

.important-note h4 {
    color: #00A9A9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.important-note ul {
    list-style: none;
    padding: 0;
}

.important-note li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.important-note li::before {
    content: "•";
    color: #e53e3e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: #90cdf4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.emergency {
    background: #e53e3e;
    padding: 1.5rem;
    border-radius: 10px;
}

.emergency h3 {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .title-section h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .mhrs-info {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .services,
    .doctors,
    .appointment {
        padding: 3rem 0;
    }
    
    .services h2,
    .doctors h2,
    .appointment h2 {
        font-size: 2rem;
    }
}