* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
    color: #fff3cd;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.urgency-banner {
    background: #ff4757;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.phone-cta {
    margin-bottom: 20px;
}

.phone-button {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    border: 3px solid #fff;
}

.phone-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.6);
    background: #ffb300;
}

.call-subtitle {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Benefits Card */
.benefits-card {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #dc3545;
    font-weight: 700;
}

.benefits-card ul {
    list-style: none;
}

.benefits-card li {
    padding: 10px 0;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Services Grid */
.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #dc3545;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-cta a {
    background: #dc3545;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta a:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Problem Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.problem-solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #dc3545;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #dc3545;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* Trust Signals */
.trust-signals {
    background: #f8f9fa;
    padding: 60px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 10px;
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 10px;
}

.rating {
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons {
    margin-bottom: 30px;
}

.phone-button-large {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 30px 60px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
    border: 4px solid #fff;
}

.phone-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.6);
    background: #ffb300;
}

.emergency-note,
.service-guarantee {
    margin-top: 30px;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.service-guarantee {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .phone-button {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .phone-button-large {
        padding: 25px 40px;
        font-size: 1.3rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-grid,
    .problems-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .services-grid-section h2,
    .testimonials h2,
    .problem-solution h2 {
        font-size: 2rem;
    }
}