/* ============================================
   Prime Mold Remediation Sacramento - Styles
   Theme Colors: #002549 (Blue) | #ef830f (Orange)
   ============================================ */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #002549;
    --primary-orange: #ef830f;
    --dark-blue: #001a35;
    --light-blue: #003d7a;
    --light-orange: #ff9933;
    --dark-orange: #d66f00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-color: #dee2e6;
    --shadow: 0 2px 15px rgba(0, 37, 73, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 37, 73, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 16px;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: 0 2px 20px rgba(0, 37, 73, 0.15);
}

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

.logo img {
    height: 90px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 131, 15, 0.3);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 37, 73, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-emergency {
    background: #dc3545;
    color: var(--white);
    border-color: #dc3545;
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

/* ============================================
   Floating Call Button
   ============================================ */

.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(239, 131, 15, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: floatPulse 2s infinite;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(239, 131, 15, 0.6);
}

.floating-call-button i {
    font-size: 30px;
    color: var(--white);
}

.floating-call-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    animation: ripple 2s infinite;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.hero-feature i {
    color: var(--primary-orange);
    font-size: 24px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Emergency Banner
   ============================================ */

.emergency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: 25px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 36px;
    color: var(--white);
}

.emergency-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.emergency-text p {
    font-size: 16px;
    opacity: 0.95;
}

.emergency-alert {
    background: #fff3cd;
    border-left: 4px solid var(--primary-orange);
    padding: 20px 0;
    margin-bottom: 40px;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.alert-content i {
    font-size: 32px;
    color: var(--primary-orange);
}

.alert-content h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.alert-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    margin-top: 90px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.service-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    background: var(--light-gray);
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.service-features {
    margin: 25px 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.service-features i {
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose {
    background: var(--light-gray);
}

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

.reason-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 32px;
    color: var(--white);
}

.reason-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   Process Section
   ============================================ */

.process {
    background: var(--white);
}

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

.process-step {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid var(--primary-orange);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   Service Areas Section
   ============================================ */

.service-areas {
    background: var(--light-gray);
}

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

.areas-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.areas-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.areas-cta {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid var(--primary-orange);
}

.areas-cta p {
    margin-bottom: 15px;
}

/* ============================================
   Health Risks Section
   ============================================ */

.health-risks {
    background: var(--white);
}

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

.health-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.health-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.health-list {
    margin: 25px 0;
}

.health-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.health-list i {
    color: #dc3545;
    margin-top: 3px;
    font-size: 20px;
}

.health-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-hours {
    font-size: 16px;
    opacity: 0.9;
}

.cta-hours i {
    color: var(--primary-orange);
    margin-right: 8px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* ============================================
   About Page Styles
   ============================================ */

.about-story {
    padding: 80px 0;
}

.commitment {
    background: var(--light-gray);
}

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

.commitment-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.commitment-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.commitment-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.6;
}

.expertise {
    padding: 80px 0;
}

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

.expertise-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.expertise-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 30px 0 15px;
    font-weight: 600;
}

.expertise-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.expertise-list {
    margin: 20px 0;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.expertise-list i {
    color: var(--primary-orange);
}

.expertise-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.local-matters {
    background: var(--light-gray);
    padding: 80px 0;
}

.local-matters h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.local-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.local-card i {
    font-size: 42px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.local-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.our-process {
    padding: 80px 0;
}

.our-process h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   Services Page Styles
   ============================================ */

.services-overview {
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-main-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-detail-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-detail-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content {
    padding: 50px;
}

.service-detail-content h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin: 30px 0 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features-list {
    margin: 25px 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
}

.service-features-list i {
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.mold-types,
.water-damage-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.mold-type,
.damage-type {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.mold-type i,
.damage-type i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.mold-type strong,
.damage-type strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 17px;
}

.mold-type p,
.damage-type p {
    font-size: 15px;
    margin: 0;
}

.service-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.why-services {
    background: var(--light-gray);
    padding: 80px 0;
}

.why-services h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.why-item i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
}

.service-areas-section {
    padding: 80px 0;
}

.service-areas-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.areas-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-column ul {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
}

.area-column li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.area-column i {
    color: var(--primary-orange);
    font-size: 14px;
}

/* ============================================
   Service Detail Pages
   ============================================ */

.service-intro {
    padding: 80px 0;
}

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

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.intro-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.mold-signs {
    background: var(--light-gray);
    padding: 80px 0;
}

.mold-signs h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 50px;
}

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

.sign-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sign-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.sign-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.sign-card p {
    font-size: 15px;
    line-height: 1.6;
}

.remediation-process,
.restoration-process {
    padding: 80px 0;
}

.remediation-process h2,
.restoration-process h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.process-item:last-child {
    border-bottom: none;
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-info h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-info p {
    font-size: 16px;
    line-height: 1.8;
}

.mold-types-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.mold-types-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.type-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-orange);
}

.type-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.type-card p {
    font-size: 15px;
    line-height: 1.7;
}

.health-section {
    padding: 80px 0;
}

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

.health-text h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.health-text h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 25px 0 15px;
    font-weight: 600;
}

.health-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.health-effects,
.risk-groups {
    margin: 20px 0;
}

.health-effects li,
.risk-groups li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.health-effects i {
    color: var(--primary-orange);
    margin-top: 3px;
}

.risk-groups i {
    color: #dc3545;
    margin-top: 3px;
}

.why-choose-service {
    background: var(--light-gray);
    padding: 80px 0;
}

.why-choose-service h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.benefit {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit p {
    font-size: 15px;
    line-height: 1.6;
}

/* Water Damage Page */
.fast-response {
    background: var(--light-gray);
    padding: 80px 0;
}

.fast-response h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.timeline-damage {
    max-width: 900px;
    margin: 0 auto;
}

.damage-stage {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-orange);
}

.stage-time {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.stage-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.stage-content ul {
    margin-left: 20px;
}

.stage-content li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.water-services {
    padding: 80px 0;
}

.water-services h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.service-detail {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-detail i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-detail p {
    font-size: 15px;
    line-height: 1.6;
}

.water-causes {
    background: var(--light-gray);
    padding: 80px 0;
}

.water-causes h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.cause-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cause-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.cause-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.cause-card p {
    font-size: 15px;
    line-height: 1.6;
}

.process-steps-horizontal {
    display: grid;
    grid-template-columns: auto 50px auto 50px auto 50px auto 50px auto 50px auto;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.step {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    font-size: 14px;
    line-height: 1.5;
}

.step-arrow {
    text-align: center;
    color: var(--primary-orange);
    font-size: 24px;
}

.mold-prevention {
    padding: 80px 0;
}

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

.prevention-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.prevention-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 25px 0 15px;
    font-weight: 600;
}

.prevention-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.prevention-list {
    margin: 20px 0;
}

.prevention-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.prevention-list i {
    color: var(--primary-orange);
    margin-top: 3px;
}

.prevention-list strong {
    color: var(--primary-blue);
}

.prevention-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-details h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.contact-note {
    font-size: 14px !important;
    color: var(--medium-gray);
}

.call-now-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.call-now-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.call-now-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 600px;
}

.service-areas-contact {
    background: var(--light-gray);
    padding: 80px 0;
}

.service-areas-contact h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-areas-contact > .container > p {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-list ul {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.area-list i {
    color: var(--primary-orange);
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   Thank You Page Styles
   ============================================ */

.thank-you-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-icon i {
    font-size: 60px;
    color: var(--white);
}

.thank-you-content h1 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.thank-you-next {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.thank-you-next h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.next-step i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.next-step h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.next-step p {
    font-size: 15px;
    color: var(--medium-gray);
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thank-you-emergency {
    margin-top: 40px;
}

.emergency-box {
    background: #fff3cd;
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.emergency-box i {
    font-size: 36px;
    color: var(--primary-orange);
}

.emergency-box h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.emergency-box p {
    color: var(--dark-gray);
    margin: 0;
}

.quick-links-section {
    padding: 80px 0;
}

.quick-links-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.quick-link-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-blue);
}

.quick-link-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.quick-link-card p {
    font-size: 15px;
    color: var(--medium-gray);
}

/* ============================================
   Blog Page Styles
   ============================================ */

.blog-section {
    padding: 80px 0;
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.blog-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-article {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 50px;
}

.article-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category,
.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--medium-gray);
}

.article-category {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

.article-category i {
    font-size: 12px;
}

.article-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 30px 0 15px;
    font-weight: 600;
}

.article-content h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 25px 0 12px;
    font-weight: 600;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.article-content ul {
    margin: 20px 0 20px 20px;
}

.article-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.article-content ol {
    margin: 20px 0 20px 20px;
}

.article-content ol li {
    list-style: decimal;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.article-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.blog-cta {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.blog-cta-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-cta-content p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .process-steps-horizontal {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }

    .step {
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .header-content {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        gap: 15px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .header-cta {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .about-grid,
    .intro-grid,
    .areas-content,
    .health-grid,
    .expertise-grid,
    .health-content-grid,
    .prevention-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        gap: 20px;
    }

    .emergency-content {
        justify-content: center;
        text-align: center;
    }

    .reasons-grid,
    .signs-grid,
    .services-detail-grid,
    .causes-grid,
    .why-grid,
    .service-benefits,
    .commitment-grid,
    .local-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-content,
    .article-content {
        padding: 30px;
    }

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

    .cta-buttons,
    .hero-buttons,
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    section {
        padding: 60px 0;
    }

    .logo img {
        height: 50px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .article-image {
        height: 250px;
    }

    .faq-grid,
    .areas-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .emergency-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta,
    .btn,
    .newsletter-form,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .container {
        max-width: 100%;
    }
}