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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 60px 0;
}

.header-content {
    text-align: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-info {
    text-align: center;
}

.name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background-color: #f8fafc;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.experience-period {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.experience-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.experience-details p {
    color: #6b7280;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding: 0 40px;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.philosophy-quote::before {
    top: -20px;
    left: 0;
}

.philosophy-quote::after {
    bottom: -40px;
    right: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4b5563;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .title {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .experience-period {
        align-self: flex-start;
        min-width: auto;
    }
    
    .philosophy-quote {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about, .services, .experience, .philosophy, .cta {
        padding: 60px 0;
    }
}

@media (min-width: 769px) {
    .profile-section {
        flex-direction: row;
        text-align: left;
    }
    
    .profile-info {
        text-align: left;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.experience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

