/* Modern color scheme */
:root {
    --primary-blue: #2A5CAA;
    --accent-orange: #FF7F00;
    --dark-text: #333333;
    --light-text: #f8f8f8;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo span {
    color: var(--accent-orange);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

.cta-button.x-large {
    padding: 20px 40px;
    font-size: 20px;
    margin: 20px 0;
}

/* Hero section */
.hero {
    background-color: #f5f9ff;
    padding: 60px 0;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheader {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.trust-badges span {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-blue);
    border-radius: 8px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

/* Problems section */
.problems-section {
    padding: 60px 0;
    background-color: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Process section */
.process-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.step-number {
    background-color: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Service areas */
.service-areas {
    padding: 60px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-card {
    background-color: var(--primary-blue);
    color: white;
    padding: 30px;
    border-radius: 8px;
}

/* FAQ section */
.faq-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.faq-item {
    margin-bottom: 30px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* CTA section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: rgb(164, 38, 44);;
    color: white;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-phone {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Mobile sticky CTA */
.mobile-cta {
    display: none;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FF4500;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 99;
}

.phone-icon {
    font-size: 1.5rem;
}

.cta-text {
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 2px;
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 20px;
    }
}