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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #19191B 0%, #4D5456 50%, #19191B 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(25, 25, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 138, 48, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #008A30, #1AD500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #017429, #008A30);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(1, 116, 41, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #004F18, #017429);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 116, 41, 0.5);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #19191B 0%, #4D5456 50%, #19191B 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 138, 48, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF, #1AD500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: #C8C8C5;
}

.hero-cta {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-disclaimer {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
    color: #B3B3AE;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #4D5456 0%, #19191B 100%);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #008A30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-card {
    background: rgba(25, 25, 27, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 138, 48, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 138, 48, 0.3);
    border-color: rgba(26, 213, 0, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #00BC02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #C8C8C5;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #B3B3AE;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1AD500;
    font-weight: bold;
}

.service-cta {
    color: #1AD500;
    text-decoration: none;
    font-weight: 600;
}

.service-cta:hover {
    color: #00BC02;
}

/* Local Area Section */
.local-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #19191B 0%, #4D5456 100%);
}

.local-content {
    max-width: 800px;
    margin: 0 auto;
}

.local-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #C8C8C5;
}

.local-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #008A30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Local Stats */
.local-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(25, 25, 27, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(26, 213, 0, 0.2);
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1AD500;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1AD500, #00BC02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #C8C8C5;
    font-weight: 600;
}

/* Areas Showcase */
.areas-showcase {
    margin-top: 2rem;
}

.primary-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.area-card {
    background: rgba(25, 25, 27, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 213, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 213, 0, 0.6);
    box-shadow: 0 8px 25px rgba(26, 213, 0, 0.2);
}

.area-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1AD500;
    font-weight: 700;
}

.area-card p {
    color: #C8C8C5;
    font-size: 0.9rem;
    margin: 0;
}

.additional-areas {
    background: rgba(25, 25, 27, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(77, 84, 86, 0.3);
}

.additional-areas h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.area-tag {
    background: linear-gradient(135deg, #017429, #008A30);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(26, 213, 0, 0.3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: linear-gradient(135deg, #1AD500, #00BC02);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 213, 0, 0.3);
}

.area-tag:last-child {
    background: linear-gradient(135deg, #1AD500, #CEFF85);
    color: #19191B;
    font-weight: 800;
    animation: pulse 2s infinite;
}

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

/* About Agent Section */
.about-agent {
    padding: 80px 0;
    background: linear-gradient(135deg, #4D5456 0%, #19191B 100%);
}

.agent-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.agent-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #C8C8C5;
}

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

.highlight {
    background: rgba(25, 25, 27, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 138, 48, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #00BC02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight p {
    color: #C8C8C5;
    font-size: 0.95rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #19191B 0%, #004F18 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #CEFF85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #C8C8C5;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #19191B;
    text-align: center;
    border-top: 2px solid #008A30;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #1AD500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #C8C8C5;
    margin: 0;
}

.contact-item a {
    color: #1AD500;
    text-decoration: none;
}

.contact-item a:hover {
    color: #CEFF85;
}

/* Footer */
.footer {
    background: #19191B;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #4D5456;
}

.footer p {
    color: #B3B3AE;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #1AD500;
    text-decoration: none;
}

.footer a:hover {
    color: #CEFF85;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services, .local-area, .about-agent, .final-cta {
        padding: 60px 0;
    }
}

/* Specialty Insurance Section */
.specialty-insurance {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(25, 25, 27, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 138, 48, 0.2);
}

.specialty-insurance h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1AD500, #00BC02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.specialty-subtitle {
    text-align: center;
    color: #C8C8C5;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.insurance-category {
    background: rgba(77, 84, 86, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 213, 0, 0.1);
}

.insurance-category h4 {
    color: #1AD500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
}

.insurance-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.insurance-type-card {
    background: rgba(25, 25, 27, 0.8);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 138, 48, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.insurance-type-card:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 213, 0, 0.5);
    box-shadow: 0 4px 15px rgba(26, 213, 0, 0.2);
    background: rgba(26, 213, 0, 0.1);
}

.type-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.insurance-type-card span {
    color: #C8C8C5;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #19191B 0%, #4D5456 100%);
}

.testimonials-subtitle {
    text-align: center;
    color: #C8C8C5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: rgba(25, 25, 27, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(26, 213, 0, 0.2);
}

.review-stat {
    text-align: center;
    padding: 1rem;
}

.review-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1AD500;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1AD500, #00BC02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-stat .stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-stat .stat-label {
    font-size: 0.9rem;
    color: #C8C8C5;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: rgba(25, 25, 27, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 138, 48, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 213, 0, 0.4);
    box-shadow: 0 8px 25px rgba(26, 213, 0, 0.2);
}

.testimonial.featured {
    border: 2px solid rgba(26, 213, 0, 0.4);
    background: rgba(26, 213, 0, 0.05);
}

.testimonial.business-review {
    border: 2px solid rgba(206, 255, 133, 0.3);
    background: rgba(206, 255, 133, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info strong {
    color: #FFFFFF;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.reviewer-info .stars {
    font-size: 1rem;
}

.review-date {
    color: #B3B3AE;
    font-size: 0.85rem;
}

.testimonial blockquote {
    color: #C8C8C5;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #1AD500;
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: Georgia, serif;
}

.testimonials-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(25, 25, 27, 0.8);
    border-radius: 16px;
    border: 2px solid rgba(26, 213, 0, 0.3);
}

.testimonials-cta h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1AD500, #CEFF85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}