/* Hero Section Styles */
.hero-section {
    width: 100%;
    height: 50vh;
    background-image: url('../webimg/studio-cleaning.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.4) 0%,
            rgba(118, 75, 162, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 800px;
    margin: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 30px 25px;
    }
}

/* Main Section Styles */
.cleaning-info-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.info-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.info-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.info-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.pricing-section {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 1rem;
}

.pricing-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #ddd;
}

.pricing-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f8f9fa;
}

.pricing-table tr:nth-child(even) td {
    background: #ffffff;
}

.pricing-table td:first-child {
    font-weight: 500;
    text-align: left;
    background: #ecf0f1;
}

.pricing-note {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

@media (max-width: 768px) {
    .info-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .info-content,
    .pricing-section {
        padding: 30px 20px;
    }

    .pricing-title {
        font-size: 1.6rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 8px 5px;
    }

    .cleaning-info-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 6px 3px;
    }

}