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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #E6C042;
    outline: 2px solid #00ff00;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #00ff00;
    color: #111;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #E6C042;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(243, 209, 72, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #00ff00;
    color: #111;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Fix logo hover effect - remove all borders and effects */
.primary-logo:hover,
.primary-logo:focus,
.primary-logo:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    transform: none !important;
    transition: none !important;
}

/* Fix logo container hover */
#header .cell-1 a:hover,
#header .cell-1 a:focus,
#header .cell-1 a:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    transform: none !important;
    transition: none !important;
}

/* Override external CSS for header navigation hover */
#header-navigation .menu-item a:hover,
#header-navigation .menu-item a:focus,
#header-navigation .menu-item a:active {
    color: #00ff00 !important;
    transform: scale(1.05) !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
    background-color: transparent !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any underline or border effects */
#header-navigation .menu-item a:hover::after,
#header-navigation .menu-item a:hover::before,
#header-navigation .menu-item a:focus::after,
#header-navigation .menu-item a:focus::before,
#header-navigation .menu-item a::after,
#header-navigation .menu-item a::before {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    content: none !important;
    background: none !important;
    border: none !important;
}

/* Target the menu-item container itself */
#header-navigation .menu-item:hover,
#header-navigation .menu-item:focus,
#header-navigation .menu-item:active {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Desktop Header Navigation Menu Items */
#header-navigation .menu-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

#header-navigation .menu-item a:hover {
    color: #00ff00 !important;
    transform: scale(1.05) !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

/* Header */
#header {
    background-color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    flex: 0 0 auto;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff00;
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-cta {
    flex: 0 0 auto;
}

/* Header Button Styling - Override external CSS */
.header-cta .button.primary {
    padding: 8px 16px !important;
    font-size: 0.9em !important;
    margin: 0 !important;
    background-color: #00FF00 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 4px !important;
}

/* Override external CSS that sets ALL buttons to yellow */
.button, a.button, button, input[type=button], input[type=submit] {
    background-color: #00FF00 !important;
    color: #000 !important;
}

/* Even more specific button targeting */
a.button.primary {
    background-color: #00FF00 !important;
    color: #000 !important;
    border: none !important;
}

/* Nuclear option - target by href */
a[href*="project-x-discovery"] {
    background-color: #00FF00 !important;
    color: #000 !important;
    border: none !important;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #00ff00;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a:focus {
    color: #00ff00;
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00ff00;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a:focus::after {
    width: 0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
}

.dropdown-menu a:hover, .dropdown-menu a:focus {
    background-color: #333;
    color: #00ff00;
}

.nav-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 255, 0, 0.8);
    display: flex;
    align-items: center;
    z-index: -1;
}

.hero-content {
    padding: 2rem;
    max-width: 500px;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-phone {
    margin-bottom: 2rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
    text-decoration: none;
}

.phone-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: #111;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    color: #111;
    margin-bottom: 1rem;
}

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

.service-link {
    color: #00ff00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover, .service-link:focus {
    color: #E6C042;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: #111;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00ff00;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author cite {
    font-weight: 700;
    color: #111;
    font-style: normal;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-question:focus {
    color: #00ff00;
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
#footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    color: #00ff00;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-item a {
    color: #ccc;
}

.contact-item a:hover, .contact-item a:focus {
    color: #00ff00;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover, .footer-links a:focus {
    color: #00ff00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.license-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges img {
    height: 60px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #333;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .nav-menu,
    .mobile-menu-toggle,
    .hero-cta,
    .cta-section,
    #footer {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-content {
        position: static;
        color: #000;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .service-card,
    .testimonial {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background-color: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles for Better Accessibility */
*:focus {
    outline: 2px solid #00ff00;
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline: 2px solid #00ff00;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    text-align: center;
}

.page-header-content h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 0;
}

.services-detailed h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h3 {
    color: #111;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: bold;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Service Areas */
.service-areas {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

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

.area-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.area-item h4 {
    color: #111;
    margin-bottom: 1rem;
}

.area-item p {
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
}

.why-choose-us h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #111;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    color: #111;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #111;
    margin-bottom: 0.5rem;
}

.form-group label.required::after {
    content: ' *';
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(243, 209, 72, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-group small {
    display: block;
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #00ff00;
    border-color: #00ff00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111;
    font-weight: bold;
    font-size: 14px;
}

.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Contact Information */
.contact-info-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.contact-info-container h3 {
    color: #111;
    margin-bottom: 1rem;
}

.contact-info-container p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-method .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details h4 {
    color: #111;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #00ff00;
    font-weight: 500;
}

.contact-details small {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

.emergency-contact {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #00ff00;
}

.emergency-contact h4 {
    color: #111;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    color: #666;
    margin-bottom: 1rem;
}

.emergency-btn {
    width: 100%;
    text-align: center;
}

.business-hours {
    margin-bottom: 2rem;
}

.business-hours h4 {
    color: #111;
    margin-bottom: 1rem;
}

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    padding: 0.25rem 0;
    color: #666;
}

.business-hours strong {
    color: #111;
}

.license-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.license-info h4 {
    color: #111;
    margin-bottom: 1rem;
}

.license-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.license-info strong {
    color: #111;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Blog Styles */
.blog-section {
    padding: 5rem 0;
}

.blog-section h2 {
    text-align: center;
    color: #111;
    margin-bottom: 3rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.post-meta time {
    font-weight: 500;
}

.post-category {
    background-color: #00ff00;
    color: #111;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content h3 {
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: #00ff00;
}

.post-excerpt {
    margin-bottom: 1.5rem;
}

.post-excerpt p {
    color: #666;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-author {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

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

.blog-grid .blog-post {
    margin-bottom: 0;
}

.blog-grid .post-image img {
    height: 250px;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 4rem 0;
}

.newsletter-signup h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

/* Responsive adjustments for blog page */
@media (max-width: 768px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Ensure sufficient color contrast */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}

/* ========================================
   CUSTOM STYLES MOVED FROM INDEX.HTML
   ======================================== */

/* Mobile header and sidebar styles */
#cemah-mobile-header {
    background-color: #111111;
    box-shadow: 0 0 7px rgba(0,0,0, 0.5);
}

#cemah-mobile-sidebar .menu .menu-item a:active, 
body.no-touch #cemah-mobile-sidebar .menu .menu-item a:hover, 
#cemah-mobile-sidebar, 
#cemah-mobile-sidebar .shopping-cart-button:hover, 
#cemah-mobile-sidebar .search-form input[type=submit]:hover {
    background-color: #222222;
    color: #00ff00;
    transform: scale(1.05);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#cemah-mobile-sidebar .search-form input[type=submit] {
    color: #222222;
}

#cemah-mobile-sidebar .menu .menu-item, 
#cemah-mobile-sidebar-close-button, 
#cemah-mobile-sidebar .shopping-cart-button {
    background-color: #2F2F2F;
}

#cemah-mobile-sidebar .menu .menu-item.menu-open > a, 
#cemah-mobile-sidebar-close-button:hover {
    background-color: #00FF00;
    color: #111111;
}

body.no-touch #cemah-mobile-sidebar .menu .menu-item.menu-open > a:hover {
    background-color: #00FF00;
}

#cemah-mobile-sidebar .menu .submenu {
    border-left-color: #00FF00;
}

#cemah-mobile-sidebar-close-button:hover:before, 
#cemah-mobile-sidebar-close-button:hover:after {
    background-color: #111111;
}

#cemah-mobile-sidebar .menu .menu-item.menu-open .open-button .icon {
    border-top-color: #111111;
}

body.mobile-sidebar-alert #cemah-mobile-header .toggle-mobile-sidebar .alert {
    background-color: #FFFFFF;
}

/* Override yellow colors with lime green - TARGETED ONLY */
.button, .button.large, a.button {
    background-color: #00FF00 !important;
    color: #111111 !important;
}

.button:hover, .button.large:hover, a.button:hover {
    background-color: #00CC00 !important;
    color: #111111 !important;
}

.primary-phone-1, .phone {
    color: #00FF00 !important;
}

/* Service icons only - black icons on yellow boxes */
.service-list .service .icon-wrap .cemah-svg-icon {
    background-color: #000000 !important;
}

/* Override external CSS yellow backgrounds */
#homepage-services .icon-wrap {
    background-color: #00FF00 !important;
    background-image: none !important;
}

/* Remove yellow borders from containers */
#homepage-services .container,
#homepage-services .row,
#homepage-services .cell-1 {
    border-left: none !important;
    border-right: none !important;
    background-color: white !important;
}

/* Clean, modern content styling */
#content .content {
    background-color: transparent !important;
    padding: 0 !important;
}

/* Simple, clean headings */
#content h2 {
    color: #333 !important;
    font-size: 2em !important;
    font-weight: 600 !important;
    margin: 40px 0 20px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #00FF00 !important;
}

#content h3 {
    color: #555 !important;
    font-size: 1.5em !important;
    font-weight: 600 !important;
    margin: 30px 0 15px 0 !important;
}

#content p {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

#content ul {
    margin: 20px 0 !important;
    padding-left: 30px !important;
}

#content li {
    color: #666 !important;
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

#content strong {
    color: #333 !important;
    font-weight: 600 !important;
}

/* Footer icons only */
.email-wrap .cemah-svg-icon,
.phone-wrap .cemah-svg-icon,
.address-wrap .cemah-svg-icon {
    background-color: #00FF00 !important;
}

/* Full-width sections */
.full-width-section {
    padding: 80px 0 !important;
    margin: 0 !important;
}

.full-width-section .container {
    padding: 0 20px !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
    width: 100% !important;
}

.full-width-section .row {
    margin: 0 !important;
    padding: 0 !important;
}

.full-width-section .col-12 {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Section 1: Proof Section */
.proof-section {
    background-color: #f8f9fa !important;
    position: relative !important;
}

.proof-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: rgba(248, 249, 250, 0.85) !important;
    z-index: 1 !important;
}

.proof-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.proof-section h2 {
    font-size: 2.5em !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    color: #333 !important;
}

.content-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
}

.content-card {
    background-color: white !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    border-left: 4px solid #00FF00 !important;
}

.content-card p {
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin: 0 !important;
}

/* Section 2: Services Section (now "How We Do It") */
.services-section {
    background-color: white !important;
    background-image: url('images/mtm-roofing (9).webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}

.services-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    z-index: 1 !important;
}

.services-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.services-section h2 {
    font-size: 2.5em !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    color: #333 !important;
}

.process-section {
    margin-top: 60px !important;
}

.process-section h3 {
    font-size: 2em !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    color: #333 !important;
}

.process-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important; /* Updated for 5 items */
    gap: 20px !important;
}

.process-item {
    background-color: #f8f9fa !important;
    padding: 25px !important;
    border-radius: 10px !important;
    text-align: center !important;
    border-top: 3px solid #00FF00 !important;
}

.process-item h4 {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
}

.process-item p {
    font-size: 1em !important;
    color: #666 !important;
    margin: 0 !important;
}

/* Proof statement styling */
.proof-statement {
    background-color: #f8f9fa !important;
    padding: 30px !important;
    border-radius: 10px !important;
    border-left: 4px solid #00FF00 !important;
    margin-top: 40px !important;
    text-align: center !important;
}

.proof-statement p {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 !important;
}

/* Content card h3 styling */
.content-card h3 {
    font-size: 1.4em !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

/* Section 3: Proof Results */
.full-width-section.proof-results-section {
    background-color: #191919 !important;
    position: relative !important;
}

.proof-results-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.proof-results-section h2 {
    font-size: 2.5em !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    color: white !important;
}

.proof-results-section .results-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
}

.proof-results-section .result-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    padding: 40px 30px !important;
    border-radius: 16px !important;
    text-align: center !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,255,0,0.1) !important;
    border: 1px solid rgba(0,255,0,0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.result-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00FF00, #00CC00) !important;
}

.result-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,0,0.3) !important;
    border-color: rgba(0,255,0,0.4) !important;
}

.proof-results-section .result-number {
    font-size: 3em !important;
    font-weight: 700 !important;
    color: #00FF00 !important;
    margin-bottom: 10px !important;
}

.proof-results-section .result-text {
    font-size: 1.1em !important;
    color: #ccc !important;
    font-weight: 500 !important;
}

#cta-section .cta-section {
    background-color: #2a2a2a !important;
    padding: 50px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.cta-section h3 {
    font-size: 2.2em !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    color: white !important;
}

.cta-content p {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    color: #ccc !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.cta-buttons {
    margin-top: 30px !important;
}

.button.primary {
    background-color: #00FF00 !important;
    color: #111 !important;
    padding: 20px 40px !important;
    border-radius: 8px !important;
    font-size: 1.3em !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin: 0 20px !important;
    transition: all 0.3s ease !important;
}

.button.primary:hover {
    background-color: #00CC00 !important;
    transform: translateY(-2px) !important;
}

.cta-divider {
    font-size: 1.2em !important;
    color: #666 !important;
    margin: 0 20px !important;
}

.text-cta {
    font-size: 1.2em !important;
    color: #333 !important;
    font-weight: 500 !important;
}

/* Hero section styling */
.hero-section h1 {
    font-size: 3.5em !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.hero-section h2 {
    color: #00FF00 !important;
    font-size: 1.8em !important;
    margin-bottom: 1em !important;
    font-weight: 600 !important;
}

/* Footer Styling */
#footer {
    background-color: #000000 !important;
    padding: 60px 0 40px 0 !important;
    margin-top: 0 !important;
}

.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-brand {
    text-align: left !important;
}

.footer-logo {
    margin-bottom: 15px !important;
}

.footer-logo img {
    height: 60px !important;
    width: auto !important;
}

.footer-copyright p {
    color: #666 !important;
    font-size: 0.9em !important;
    margin: 0 !important;
    font-weight: 300 !important;
}

.footer-powered {
    text-align: right !important;
}

.footer-powered img {
    height: 40px !important;
    width: auto !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .footer-brand,
    .footer-powered {
        text-align: center !important;
    }
    
    .logo-text {
        font-size: 2em !important;
    }
}

/* Homepage billboard styling for all pages */
section#homepage-billboard h1 {
    text-transform: uppercase;
    font-size: 1.6em;
    line-height: 1.3em;
    color: #FFF;
}

/* Override only the angled overlay - target specific CEMAH framework classes */
/* Hero Background Override */
#homepage-billboard {
    background-image: url('images/mtm-roofing (8).webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Homepage Hero Background */
body.home #homepage-billboard {
    background-image: url('images/mtm-roofing (8).webp') !important;
}

/* Roof Repair Page Hero Background */
body.roof-repair #homepage-billboard {
    background-image: url('images/mtm-roofing (9).webp') !important;
}

/* Roof Replacement Page Hero Background */
body.roof-replacement #homepage-billboard {
    background-image: url('images/close-up-architectural-shingle-roof.webp') !important;
}

/* Storm Damage Page Hero Background */
body.storm-damage #homepage-billboard {
    background-image: url('images/mtm-roofing (3).webp') !important;
}

/* About Page Hero Background */
body.about #homepage-billboard {
    background-image: url('images/mtm-roofing (8).webp') !important;
}

/* Contact Page Hero Background */
body.contact #homepage-billboard {
    background-image: url('images/mtm-roofing (9).webp') !important;
}

#homepage-billboard .cell-1::before,
#homepage-billboard .row::before,
#homepage-billboard .container::before,
#homepage-billboard .billboard-overlay,
#homepage-billboard .hero-overlay {
    background: rgba(0, 255, 0, 0.8) !important;
}

@media screen and (max-width: 767px) {
    section#homepage-billboard h1 {
        font-size: 1.4em;
    }
}

/* Mobile Responsive Fixes - Higher Specificity */
@media (max-width: 768px) {
    /* Fix page width overflow */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
    
    /* Mobile header - ULTRA AGGRESSIVE overrides to beat external CSS */
    body #header,
    html body #header,
    body.site #header,
    body.home #header {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    body #header .container,
    html body #header .container,
    body.site #header .container,
    body.home #header .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        width: 100% !important;
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    body #header .primary-logo,
    html body #header .primary-logo,
    body.site #header .primary-logo,
    body.home #header .primary-logo,
    body #header img,
    html body #header img,
    body.site #header img,
    body.home #header img {
        height: 60px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        max-width: 50% !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    body #header-navigation,
    html body #header-navigation,
    body.site #header-navigation,
    body.home #header-navigation {
        display: none !important;
    }
    
    body .header-cta,
    html body .header-cta,
    body.site .header-cta,
    body.home .header-cta {
        display: block !important;
        flex-shrink: 0 !important;
        margin-left: 5px !important;
        max-width: 45% !important;
        width: 45% !important;
    }
    
    body .header-cta .button,
    html body .header-cta .button,
    body.site .header-cta .button,
    body.home .header-cta .button,
    body .header-cta a,
    html body .header-cta a,
    body.site .header-cta a,
    body.home .header-cta a {
        padding: 8px 12px !important;
        font-size: 0.7em !important;
        white-space: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    /* Hero overlay transparency fix - ensure it overrides desktop */
    #homepage-billboard .cell-1::before,
    #homepage-billboard .row::before,
    #homepage-billboard .container::before,
    #homepage-billboard .billboard-overlay,
    #homepage-billboard .hero-overlay {
        background: rgba(0, 255, 0, 0.7) !important;
    }
    
    /* Stack sections vertically */
    .content-grid {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .content-card {
        width: 100% !important;
        margin-bottom: 20px !important;
        max-width: none !important;
    }
    
    /* Results grid mobile stacking */
    .results-grid {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .result-item {
        width: 100% !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2.5em !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.8em !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.5em !important;
    }
    
    /* Section padding adjustments */
    .full-width-section {
        padding: 40px 0 !important;
    }
    
    /* White content boxes mobile */
    div[style*="background-color: white"] {
        padding: 30px 20px !important;
        margin: 20px 0 !important;
    }
    
    /* Grid layouts mobile */
    div[style*="display: grid"] {
        display: block !important;
    }
    
    /* Keyword boxes mobile */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        display: block !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] > div {
        width: 100% !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 10px !important;
    }
    
    h1 {
        font-size: 2em !important;
    }
    
    h2 {
        font-size: 1.5em !important;
    }
    
    h3 {
        font-size: 1.3em !important;
    }
    
    /* Reduce padding further on small screens */
    .full-width-section {
        padding: 30px 0 !important;
    }
    
    div[style*="background-color: white"] {
        padding: 20px 15px !important;
    }
    
    /* Button adjustments */
    .button, a.button, button, input[type=button], input[type=submit] {
        padding: 12px 20px !important;
        font-size: 1em !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 10px auto !important;
        display: block !important;
    }
}

/* Modern CTA bars - 2024 Design */
.full-width-cta,
div.full-width-cta,
section .full-width-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    padding: 60px 20px !important;
    text-align: center !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 60px 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    display: block !important;
    overflow: visible !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.full-width-cta a,
div.full-width-cta a,
section .full-width-cta a {
    background: linear-gradient(135deg, #00FF00 0%, #00CC00 100%) !important;
    color: #000 !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 280px !important;
}

.full-width-cta a::before,
div.full-width-cta a::before,
section .full-width-cta a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.full-width-cta a:hover,
div.full-width-cta a:hover,
section .full-width-cta a:hover {
    background: linear-gradient(135deg, #00CC00 0%, #00AA00 100%) !important;
    color: #000 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 35px rgba(0, 255, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.full-width-cta a:hover::before,
div.full-width-cta a:hover::before,
section .full-width-cta a:hover::before {
    left: 100% !important;
}

.full-width-cta a:active,
div.full-width-cta a:active,
section .full-width-cta a:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Hide Proof and Positioning section on mobile */
@media (max-width: 768px) {
    .proof-results-section {
        display: none !important;
    }
}
