* {
    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;
}

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

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.info-section h2,
.contact-form-section h2 {
    color: #3d8784;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid #cb8864;
    padding-bottom: 0.5rem;
}

/* Doctor Info */
.doctor-info {
    background: #f8f9fa;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid #3d8784;
}

.doctor-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: #3d8784;
}

.specialty {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #cb8864;
    font-style: italic;
    font-weight: 500;
}

.affiliations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.affiliation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.affiliation-item i {
    color: #3d8784;
    font-size: 1.2rem;
    min-width: 20px;
}

.affiliation-item span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3d8784;
}

.contact-item i {
    color: #cb8864;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: #3d8784;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    color: #3d8784;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #cb8864;
}

/* Social Media */
.social-media {
    margin-top: 1rem;
}

.social-media h3 {
    color: #3d8784;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3d8784;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-links a:hover {
    background: #cb8864;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(61, 135, 132, 0.4);
}

.social-links a[href*="whatsapp"] {
    background: #25D366;
}

.social-links a[href*="whatsapp"]:hover {
    background: #128C7E;
}

.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #e6683c 0%,#dc2743 25%,#cc2366 50%,#bc1888 75%,#8b0a50 100%);
}

.social-links a[href*="facebook"] {
    background: #1877F2;
}

.social-links a[href*="facebook"]:hover {
    background: #166FE5;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #3d8784;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d8784;
}

.submit-btn {
    background: linear-gradient(135deg, #3d8784, #cb8864);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 135, 132, 0.3);
}

/* Messages */
.message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

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

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

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

footer p {
    margin-bottom: 0.5rem;
}

.construction-text {
    color: #cb8864;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: auto;
    }
    
    .banner img {
        width: 100%;
        height: auto;
    }
    
    .doctor-title h2 {
        font-size: 1.8rem;
    }
    
    .specialty {
        font-size: 1.1rem;
    }
    
    .affiliations {
        text-align: center;
    }
    
    .affiliation-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: auto;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
}