   .contact-section {
        padding: 3rem 0;
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
    }
    
    .logo svg {
        color: #000;
    }
    
    h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #111;
    }
    
    .subtitle {
        color: #666;
        margin-bottom: 3rem;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .contact-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 2rem;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .contact-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }
    
    .icon {
        background: #f8f9fa;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .icon svg {
        color: #333;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #111;
    }
    
    .contact-card p {
        color: #666;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-link {
        color: #111;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #111;
        transition: opacity 0.2s ease;
    }
    
    .contact-link:hover {
        opacity: 0.7;
    }
    
    .faq-section {
        text-align: left;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .faq-item {
        border: 1px solid #eee;
        border-radius: 12px;
    }
    
    .faq-button {
        width: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: #111;
        font-weight: 500;
    }
    
    .faq-button svg {
        color: #666;
    }
    
    @media (max-width: 768px) {
        .contact-section {
            padding: 2rem 1rem;
        }
    
        h1 {
            font-size: 2rem;
        }
    
        .contact-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .faq-section {
        text-align: left;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-item {
        border: 1px solid #eee;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .faq-button {
        width: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: #111;
        font-weight: 500;
        text-align: left;
    }
    
    .faq-button:hover {
        background-color: #f8f9fa;
    }
    
    .arrow-icon {
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .arrow-icon {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background-color: #f8f9fa;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 1.5rem;
    }
    
    .faq-answer p {
        margin: 0;
        color: #666;
        line-height: 1.6;
    }
    