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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Header - Full Width Fix */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 400;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #2563eb;
}

/* Modern Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav li {
    position: relative;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    display: block;
    font-weight: 400;
    border-radius: 8px;
    position: relative;
}

nav a:hover {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.05);
}

/* Modern Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    z-index: 1001;
    padding: 0.5rem;
    animation: fadeInUp 0.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #4b5563;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
    transform: translateX(4px);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Modern Main Content Styles */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Hero Section */
/* Hero section with video */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: left;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    max-width: 500px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Service images */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-service:hover .service-image img {
    transform: scale(1.05);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left, .hero-right {
        flex: none;
        width: 100%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.25rem !important;
    color: #1a1a1a !important;
    font-weight: 400 !important;
}

/* Image/Video Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.image-placeholder::before {
    content: '📷';
    font-size: 2rem;
    margin-right: 0.5rem;
}

.video-placeholder {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 2px dashed #6b7280;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.video-placeholder::before {
    content: '🎥';
    font-size: 2rem;
    margin-right: 0.5rem;
}

.placeholder-sm { height: 200px; }
.placeholder-md { height: 300px; }
.placeholder-lg { height: 400px; }
.placeholder-xl { height: 500px; }

/* Work Page Full-Width Sections - Fixed */
.section {
    padding: 4rem 0;
    background-color: var(--white);
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.section h3 {
    color: #1a1a1a;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.0625rem;
}

/* Section Content Container - Fixed */
.section-container,
.section .services-grid,
.section .stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Grid - Bigger Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 0;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.service-card h3 a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.service-card h3 a:hover {
    color: #1d4ed8;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Modern Work Services - Bigger Cards */
.work-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.work-service {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.work-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.work-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.work-service:hover::before {
    transform: scaleX(1);
}

.work-service h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.work-service h3 a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.work-service h3 a:hover {
    color: #1d4ed8;
}

.work-service p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Stats Section - Proper Alignment */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin: 0;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 500;
    display: block;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 400;
}

/* Testimonials */
.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
    border-left: 4px solid var(--accent-orange);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-author {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.hero-btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgba(37, 99, 235, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.cta-button:hover::before {
    left: 100%;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer - Full Width Fix */
footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 3rem 0;
    margin: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: #2563eb;
    text-decoration: none;
    margin: 0 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.social-links a:hover {
    color: #1d4ed8;
    background-color: rgba(37, 99, 235, 0.05);
}

/* Responsive design for hero buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0;
        border-radius: 0;
        padding: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.75rem 3rem;
        font-size: 1rem;
        color: #6b7280;
        background-color: transparent;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(37, 99, 235, 0.05);
        transform: none;
    }
    
    /* Hide desktop dropdown hover on mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-container,
    .section .services-grid,
    .section .stats {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .work-services-section {
        padding: 4rem 0;
    }
    
    .work-services-container {
        padding: 0 1rem;
    }
    
    .work-services-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .work-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-service {
        padding: 1.25rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .work-service {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .expertise-card .service-image {
        height: 120px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 35px;
    width: auto;
}

/* Removed .footer-logo and .footer-logo img styles */

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 25px;
    }
}

/* Press Section - Full Width, Logos Only */
.press-section {
    background-color: #303030;
    padding: 3rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.press-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    filter: brightness(0) invert(1); /* Makes logos white */
}

.press-logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Responsive design for press section */
@media (max-width: 768px) {
    .press-section {
        padding: 2.5rem 0;
    }
    
    .press-logos {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .press-logo img {
        height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .press-logos {
        gap: 2rem;
    }
    
    .press-logo img {
        height: 40px;
        max-width: 120px;
    }
}

/* Color Variables - Based on MM Logo Colors */
:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #4a90e2;
    --accent-orange: #87ceeb; /* Changed from #f39c12 to light blue */
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
}

/* General Styles - Light background, dark text */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    color: var(--text-dark);
    font-weight: 400; /* Remove bold */
}

/* Headers - No bold fonts */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500; /* Medium weight instead of bold */
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h2 {
    font-size: 2rem;
    color: var(--secondary-blue);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Header Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(44, 90, 160, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 35px;
    width: auto;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--secondary-blue);
}

/* Hero Section - Light background */
.hero {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    padding: 6rem 0;
    text-align: left;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 500; /* No bold */
    margin-bottom: 1.5rem;
}

.hero-left .lead {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-left p {
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 400; /* No bold */
}

.hero-right {
    flex: 1;
    max-width: 500px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.2);
    border: 3px solid var(--white);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* Work Services Section - Full Width */
.work-services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.work-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.work-services-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.work-service {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.work-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #87ceeb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.work-service:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.work-service:hover::before {
    transform: scaleX(1);
}

.work-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.work-service-link:hover {
    text-decoration: none;
    color: inherit;
}

.work-service-link:hover .work-service {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.work-service-link:hover .work-service::before {
    transform: scaleX(1);
}

.work-service h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.work-service h3 a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.work-service h3 a:hover {
    color: #1d4ed8;
}

.work-service p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-service:hover .service-image img {
    transform: scale(1.05);
}

/* CTA Sections - Dark background, light text */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}





/* Footer - Updated three-column layout */
footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-links a:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* About Page - Hero Image */
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Media Section - Fixed Full Width */
.media-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.media-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.media-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 500; /* Removed bold */
}

.media-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400; /* Removed bold */
}

.media-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-highlights li {
    padding: 0.75rem 0;
    color: #475569;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 400; /* Removed bold */
}

.media-highlights li:before {
    content: "📺";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.media-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Media Section */
@media (max-width: 768px) {
    .media-section {
        padding: 3rem 0;
    }
    
    .media-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .media-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .media-text {
        text-align: center;
    }
    
    .media-highlights li {
        text-align: left;
    }
}

/* Asia Business Page - Remove bullets and center align */
.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

/* Asia Business Page - Center align market insights section */
.section h2 {
    text-align: center;
}

.section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Fix media section alignment */
.media-section .media-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.media-section .media-text {
    text-align: center;
}

.media-section .media-text h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.media-section .media-text > p {
    text-align: center;
    margin-bottom: 3rem;
}

/* Ensure testimonials are properly centered */
.media-section .testimonial {
    text-align: center;
    margin: 2rem auto;
    max-width: 700px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-section .testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.media-section .testimonial-author {
    text-align: center;
    font-weight: 600;
    color: #2563eb;
}

/* Center align CTA section content */
.cta-section-simple {
    text-align: center;
}

.cta-content-simple {
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* Digital Marketing Page - Service Images with Proper Aspect Ratio */
.expertise-card .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Ensure expertise cards have consistent height */
.expertise-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expertise-card .expertise-skills {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left, .hero-right {
        flex: none;
        width: 100%;
    }
    
    .hero-left h1 {
        font-size: 2.2rem;
    }
    
    .work-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Responsive adjustments for service images */
    .expertise-card .service-image {
        height: 150px;
    }
}

/* Full-width CTA Section - More Impactful */
.cta-section-fullwidth {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
    color: white;
    padding: 6rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    overflow: hidden;
}

.cta-section-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-section-fullwidth h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.cta-section-fullwidth p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-button-large:hover::before {
    left: 100%;
}

/* Responsive design for full-width CTA */
@media (max-width: 768px) {
    .cta-section-fullwidth {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1.5rem;
    }
    
    .cta-button-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-section-fullwidth {
        padding: 3rem 0;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* CTA Section Simple - Full Width */
.cta-section-simple {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-simple {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-section-simple h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section-simple p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* CTA Button - Consistent styling */
.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-orange);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive design for simple CTA */
@media (max-width: 768px) {
    .cta-section-simple {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content-simple {
        padding: 0 1.5rem;
    }
    
    .cta-section-simple h2 {
        font-size: 2rem;
    }
    
    .cta-section-simple p {
        font-size: 1.1rem;
    }
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .social-links svg {
        width: 16px;
        height: 16px;
    }
}

/* About Page Specific Styles */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* About Page Hero - Dark text for description */
.hero .hero-left p:not(.lead) {
    color: #1e293b !important;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Ensure the specific paragraph has dark text */
.hero .hero-left p {
    color: #1e293b;
}

/* Keep the lead subtitle with existing styling */
.hero .hero-left .lead {
    color: var(--text-dark) !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
}

/* Family Page - Enhanced Text Readability */
.hero .hero-left p {
    color: #1e293b !important;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Family Page - Section Text Enhancement */
.section p {
    color: #1e293b !important;
    font-weight: 400;
    line-height: 1.7;
}

/* Family Page - Insights Section Text */
.section h2 + p,
.section p:first-of-type {
    color: #0f172a !important;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Family Page - Strong Text Enhancement */
.section strong {
    color: #0f172a !important;
    font-weight: 600;
}

/* Family Page - Timeline Content Text */
.timeline-content p {
    color: #1e293b !important;
    font-weight: 400;
    line-height: 1.7;
}

/* Family Page - Video Section Text */
.video-section > p {
    color: #1e293b !important;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Family Page - Video Item Text */
.video-item p {
    color: #1e293b !important;
    font-weight: 400;
    line-height: 1.6;
}

/* Family Page - CTA Section Text */
.cta-section-simple p {
    color: #1e293b !important;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Timeline Styles */
.timeline-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Expertise Section Styles - Full Width */
.expertise-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.expertise-section .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expertise-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-skills {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive for Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: 80px;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        margin-left: -1rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -30px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .expertise-skills {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding: 0 1rem;
    }
    
    .timeline-year {
        min-width: 70px;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Blog Promotion Section */
.blog-promotion-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Blog Promotion Section - Full Width */
.blog-promotion-section-fullwidth {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-promotion-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.blog-promotion-section h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-promotion-section-fullwidth h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.blog-promotion-section p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-promotion-section-fullwidth p {
    color: #4b5563;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.blog-link {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.blog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
}

.blog-subtitle {
    font-size: 1rem !important;
    color: #6b7280 !important;
    font-style: italic;
    margin-top: 1rem !important;
    font-weight: 400 !important;
}

/* Testimonials Section - Full Width */
.testimonials-section-fullwidth {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-section-fullwidth h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.testimonials-section-fullwidth .testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.testimonials-section-fullwidth .testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: right;
}

/* Bookshelf Section Styles */
.bookshelf-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.bookshelf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.book-cover {
    width: 240px;
    height: 360px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-item:hover .book-cover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.book-item:hover .book-cover img {
    transform: scale(1.05);
}

.book-info {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 260px;
    border: 1px solid #e5e7eb;
}

.book-item:hover .book-info {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.book-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.book-info p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Bookshelf */
@media (max-width: 768px) {
    .bookshelf {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .book-cover {
        width: 180px;
        height: 270px;
    }
    
    .book-info {
        max-width: 200px;
        padding: 1rem;
    }
    
    .book-info h3 {
        font-size: 1.1rem;
    }
    
    .book-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bookshelf {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .book-cover {
        width: 200px;
        height: 300px;
    }
    
    .book-info {
        max-width: 220px;
        padding: 1rem;
    }
}

/* Courses Section Styles */
.courses-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-info {
    padding: 2rem;
}

.course-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-details {
    margin-bottom: 1.5rem;
}

.course-details p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.course-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.course-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.course-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.course-cta:hover::before {
    left: 100%;
}

/* Responsive Design for Courses */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .course-image {
        height: 200px;
    }
    
    .course-info {
        padding: 1.5rem;
    }
    
    .course-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .courses-section {
        padding: 3rem 0;
    }
    
    .course-info {
        padding: 1rem;
    }
    
    .course-cta {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Individual service card sections */
.section-fullwidth .service-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* 演讲主题部分样式 - Updated to match site consistency */
.speaking-topics-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    color: #333;
}

.speaking-topics-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.topic-card:hover::before {
    transform: scaleX(1);
}

.topic-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.topic-card p {
    color: #555;
    line-height: 1.6;
}

/* 演讲经历部分样式 - Updated */
.speaking-experience-section {
    background-color: var(--white);
    color: #333;
    padding: 5rem 0;
    text-align: center;
}

.speaking-experience-section h2 {
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

/* 演讲形式部分样式 - Updated */
.speaking-formats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    color: #333;
}

.speaking-formats-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.format-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.format-card:hover::before {
    transform: scaleX(1);
}

.format-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.2em;
}

.format-card p {
    color: #555;
    line-height: 1.6;
}

/* 客户反馈部分样式 - Updated */
.testimonials-section {
    background-color: var(--white);
    padding: 5rem 0;
    color: #333;
}

.testimonials-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    color: #333;
}

.testimonial::before {
    content: '\"';
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #444;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .topics-grid,
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .blog-promotion-section {
        padding: 3rem 0;
        margin: 2rem 1rem;
    }
    
    .blog-promotion-section-fullwidth {
        padding: 4rem 0;
    }
    
    .blog-promotion-content {
        padding: 0 1.5rem;
    }
    
    .blog-icon {
        font-size: 2.5rem;
    }
    
    .blog-promotion-section h2 {
        font-size: 1.75rem;
    }
    
    .blog-promotion-section-fullwidth h2 {
        font-size: 2rem;
    }
    
    .blog-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .testimonials-section-fullwidth {
        padding: 4rem 0;
    }
    
    .testimonials-content {
        padding: 0 1.5rem;
    }
    
    .testimonials-section-fullwidth h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-section-fullwidth .testimonial {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
    
    .speaking-topics-section,
    .speaking-experience-section,
    .speaking-formats-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* Video Section Styles - Family Page */
.video-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.video-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-item:hover::before {
    transform: scaleX(1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.video-item p {
    color: #6b7280;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Video Section Responsive Design */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .video-item {
        border-radius: 16px;
    }
    
    .video-item h3 {
        font-size: 1.125rem;
        margin: 1.25rem 1.25rem 0.75rem;
    }
    
    .video-item p {
        margin: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .video-item {
        border-radius: 12px;
    }
    
    .video-item h3 {
        font-size: 1rem;
        margin: 1rem 1rem 0.5rem;
    }
    
    .video-item p {
        margin: 0 1rem 1rem;
        font-size: 0.875rem;
    }
}

/* 联系页面样式 */
.contact-info-section {
    background-color: #f8f9fa;
    color: #333;
    padding: 80px 0;
}

.contact-info-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.contact-item {
    margin-bottom: 15px;
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.contact-item strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 80px;
}

/* 联系表单部分样式 */
.contact-form-section {
    background-color: white;
    color: #333;
}

.contact-form-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 20px;
}

/* 统计数据部分样式 */
.contact-stats-section {
    background: linear-gradient(135deg, #e8f4f8, #f1f8fc);
    color: #2c3e50;
    text-align: center;
}

.contact-stats-section h2 {
    color: #2c3e50;
    margin-bottom: 50px;
}

.contact-stats-section .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-stats-section .stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-stats-section .stat-item:hover {
    transform: translateY(-5px);
}

.contact-stats-section .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-stats-section .stat-label {
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-stats-section .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-stats-section .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .contact-stats-section .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section,
    .contact-form-section,
    .contact-stats-section {
        padding: 60px 0;
    }
}