/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4f46e5;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.profile-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 400;
}

/* Section styles */
.section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4b5563;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Profile Links */
.profile-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.profile-link:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.profile-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.profile-link span {
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #4f46e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.testimonial-content {
    margin-top: 15px;
}

.testimonial-content p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #4b5563;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

/* Style for question text */
.testimonial-content .question {
    font-style: italic;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.testimonial-content .question strong {
    color: #4f46e5;
    font-weight: 600;
}

/* Style for answer text */
.testimonial-content .answer {
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid #e5e7eb;
    background: rgba(79, 70, 229, 0.02);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 25px 20px;
    }
    
    .section h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-info h2 {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section h3 {
        font-size: 1.3rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.contact-item:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .header, .section {
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
}
