/* Services Section */
.services {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Why Choose Us */
.why-choose {
    padding: 4rem 2rem;
    background: #fefaf6;
    text-align: center;
}

.why-choose p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Biography */
.biography {
    padding: 4rem 2rem;
    background: #fff;
}

.bio-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.biography h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.biography p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Detailed Services */
.detailed-services {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.detailed-services h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.service-detail {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.service-detail h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 0;
    padding: 1.8rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.service-detail h3:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a252f;
}

.service-detail h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: normal;
    transition: transform 0.3s ease;
    color: #2c3e50;
}

.service-detail.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-content.active {
    max-height: 200px;
}

.service-content p {
    padding: 0 2rem 2rem 2rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* How We Work */
.how-we-work {
    padding: 4rem 2rem;
    background: #fff;
}

.how-we-work h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.contact h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.submit-btn {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #34495e;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

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

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile styles for detailed services - keep original */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        margin-bottom: 2.5rem;
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .service-detail:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .service-detail h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 0.5rem;
        cursor: default;
        background: transparent;
        padding: 0 0 0.5rem 0;
    }

    .service-detail h3:hover {
        background: transparent;
        color: #2c3e50;
    }

    .service-detail h3::after {
        display: none;
    }

    .service-content {
        max-height: none;
        overflow: visible;
    }

    .service-content p {
        padding: 0;
        margin-top: 1rem;
    }

    .bio-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}