/*
Theme Name: Monitor Environmental
Theme URI: https://dixonenvironmental.com
Description: Professional WordPress theme for Dixon Environmental compliance services
Version: 13.8
Author: Your Name
Author URI: https://yoursite.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dixon-env
*/
@import url("../twentytwentyfour/style.css");
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .wpcf7-spinner {
            margin: 0 auto !important;
            display: grid !important;
        }
        body {
            font-family: 'Lato', Arial, sans-serif;
            line-height: 1.6;
            color: #000000;
        }

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

        /* Header */
        .header {
            background: white;
            padding: 20px 0 5px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .logo-icon {
            display: none;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #1565c0;
            letter-spacing: 2px;
            margin-top: 2px;
        }
        .logo-section {
            display: flex;
            align-items: center;
            width: auto;
        }
        .logo-section img
        {
            width: 100%;
            max-width: 250px;
            height: auto;
        }
        .contact-info-header {
            font-size: 1.3rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-info-header .label {
            color: #1C75BC;
        }

        .contact-info-header .phone {
            color: #2B3990;
        }

        .contact-info-header .separator {
            color: #2B3990;
        }

        .contact-info-header .email {
            color: #2B3990;
        }

        .contact-info-header a {
            text-decoration: none;
        }

        .contact-info-header a:hover {
            text-decoration: underline;
        }

        /* Hero Section */
        .hero {
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        .hero-container {
            color: #333;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            width: calc(100% - 40px);
            max-width: 1024px;
            background-color: white;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #27AAE1;
            display: flex;
            align-items: stretch;
            gap: 10px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            flex: 0 1 45%;
            display: flex;
            flex-direction: column;
            min-width: 0;
            border-radius: 10px;
            justify-content: center;
            align-self: center;
            padding-right: 15px;
        }

        .hero-image {
            flex: 0 1 55%;
            max-width: 55%;
            min-width: 0;
            position: relative;
            z-index: 2;
            padding-left: 0;
            padding-top: 20px;
            padding-bottom: 0;
            box-sizing: border-box;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: calc(100% - 10px);
            max-width: 100%;
            display: block;
            object-fit: contain;
            object-position: center bottom;
            box-sizing: border-box;
        }

        .hero h1 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.2;
            color: #333;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 16px;
            color: #333;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 22px;
            max-width: 100%;
            color: #333;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: nowrap;
            align-items: stretch;
            justify-content: center;
            width: 100%;
        }

        .hero-buttons .btn {
            font-weight: bold;
            font-size: 12px;
            line-height: 15px;
            text-transform: uppercase;
            background: #2B3990;
            color: white;
            border: 2.67px solid #27AAE1;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-primary {
            background: #1565c0;
            color: white;
            border: 2px solid #00bcd4;
        }

        .btn-primary:hover {
            background: #0d47a1;
            border-color: #00bcd4;
        }

        .btn-secondary {
            background: #1565c0;
            color: white;
            border: 2px solid #00bcd4;
        }

        .btn-secondary:hover {
            background: #0d47a1;
            border-color: #00bcd4;
        }

        .btn-download {
            background: #1565c0;
            color: white;
            border: 2px solid #00bcd4;
        }

        .btn-download:hover {
            background: #0d47a1;
            border-color: #00bcd4;
        }

        /* Hero Description Section */
        .hero-description-section {
            padding: 30px 20px;
            background: transparent;
        }

        .hero-description-text {
            max-width: 1024px;
            margin: 0 auto;
            font-size: 22px;
            line-height: 1.6;
            color: #000000;
            text-align: left;
            font-weight: bold;
        }

        /* Main Content */
        .main-content {
            padding: 20px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1.6fr 1.4fr;
            gap: 60px;
            align-items: start;
        }

        .content-left h2 {
            color: #1C75BC;
            font-size: 32px;
            font-weight: bold;
            line-height: 1.3;
        }

        .content-left p {
            font-size: 1.05rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .solution-text {
            font-size: 1.05rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .content-left h3 {
            color: #1C75BC;
            font-size: 28px;
            font-weight: bold;
            line-height: 1.3;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .benefits-list li {
            padding: 2px 0;
            padding-left: 25px;
            position: relative;
            font-size: 17px;
        }

        .benefits-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }

        .why-choose h3 {
            color: #1C75BC;
            font-size: 28px;
            font-weight: bold;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            padding: 2px 0;
            padding-left: 25px;
            position: relative;
            color: #000000;
            font-size: 17px;
        }

        .features-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }

        /* Right Column Cards */
        .content-right {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .confidence-card {
            background: #F7F7F7;
            border: 2px solid #2B3990;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .confidence-card h4 {
            color: #000000;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .confidence-card p {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 2px;
        }

        .checklist {
            list-style: none;
            margin-bottom: 20px;
        }

        .checklist li {
            padding: 2px;
            padding-left: 22px;
            position: relative;
            color: #000000;
            font-size: 1.0rem;
            line-height: 1.5;
        }

        .checklist li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 18px;
            height: 18px;
            background-image: url('images/Check-Marks-Green.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .risk-list {
            list-style: none;
        }

        .risk-list li {
            padding: 2px;
            padding-left: 22px;
            position: relative;
            color: #000000;
            font-size: 1.0rem;
            line-height: 1.5;
        }

        .risk-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 18px;
            height: 18px;
            background-image: url('images/Check-Marks-Red.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .risk-text {
            font-size: 18px;
            font-weight: bold;
            margin: 15px 0 2px 0;
        }

        /* Testimonial */
        .testimonial {
            background: #FFFFFF;
            border: 2px solid #00A79D;
            border-radius: 20px;
            padding: 25px;
            margin: 0px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .testimonial-text {
            font-size: 20px;
            color: #000000;
            line-height: 1.5;
            margin-bottom: 3px;
        }

        .testimonial-author {
            font-size: 13px;
            color: #000000;
            font-weight: 500;
        }

        /* Company Info Card */
        .company-card {
            background: rgba(48, 96, 117, 0.85);
            color: white;
            border: 2px solid #C9D143;
            border-radius: 20px;
            padding: 25px;
        }

        .company-card h4,
        .company-card .company-card-heading {
            font-size: 20px;
            font-weight: normal;
            margin-bottom: 15px;
            color: white;
        }

        .company-card .company-card-heading p {
            font-size: 20px;
            font-weight: normal;
            margin: 0;
            color: white;
        }

        .company-card p {
            font-size: 1.06rem;
            line-height: 1.5;
            margin-bottom: 20px;
            opacity: 1;
        }

        .btn-about {
            font-weight: bold;
            font-size: 12px;
            line-height: 12px;
            text-transform: uppercase;
            background: #306075;
            color: white;
            border: 2px solid #7FCAAD;
            padding: 10px 20px;
        }

        .btn-about:hover {
            background: #306075;
        }

        /* Demo Container within left column */
        .demo-container {
            background: #00bcd4;
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0 0 0;
        }

        .demo-container h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: white;
        }

        .demo-container p {
            font-size: 16px;
            margin-bottom: 30px;
            color: white;
            opacity: 1;
        }

        .demo-container .btn {
            background: #2b3990;
            color: white;
            border: 2px solid #2b3990;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: bold;
            text-transform: uppercase;
            box-shadow: 0 4px 8px rgba(44, 82, 130, 0.3);
            position: relative;
            z-index: 2;
            margin-top: 10px;
        }

        .demo-container .btn:hover {
            background: #2b3990;
            border-color: #2b3990;
            box-shadow: 0 6px 12px rgba(44, 82, 130, 0.4);
            transform: translateY(-2px);
        }

        .demo-cta {
            background: #27AAE1;
            margin: 18px 0 0 0;
            border-radius: 20px;
            padding: 13px 28px 34px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
            position: relative;
            max-width: 600px;
            border: 2px solid #1C75BC;
            margin-bottom: 50px;
        }
          
          .demo-cta .demo-cta__title {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 10px 0;
            color: #fff !important;
          }
          
          .demo-cta .demo-cta__sub {
            font-size: 16px;
            line-height: 1.45;
            margin: 0;
            color: #fff !important;
          }

          .demo-cta p {
            font-size: 16px;
            line-height: 1.45;
            margin: 0;
            color: #fff !important;
          }
          
          .btn-demo {
            position: absolute;
            bottom: -18px;
            left: 28px;
            background: #2B3990;
            color: white;
            border: 2px solid #27AAE1;
            font-weight: bold;
            font-size: 12px;
            line-height: 12px;
            text-transform: uppercase;
            padding: 12px 22px;
            box-shadow: 0 6px 14px rgba(43,57,144,.3);
            text-decoration: none;
            transition: transform .2s ease, box-shadow .2s ease;
          }
          
          .btn-demo:hover {
            border-color: #27AAE1;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(43,57,144,.4);
          }          

        /* Footer */
        .footer {
            background: #2B3990;
            color: white;
            padding: 40px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .footer-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-buttons .btn {
            min-width: 200px;
            justify-self: start;
            font-weight: bold;
            font-size: 12px;
            line-height: 12px;
            text-transform: uppercase;
            background: #2B3990;
            color: white;
            border: 2px solid #27AAE1;
        }

        .footer-buttons .btn:hover {
            background: #f0f0f0;
            border-color: #27AAE1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .footer-contact h4 {
            display: inline;
            font-size: 16px;
            margin: 0;
            margin-right: 8px;
        }

        .footer-contact p {
            display: inline;
            margin: 0;
            margin-right: 8px;
            font-size: 16px;
        }

        .linkedin-icon {
            width: 30px;
            height: 30px;
            background: #0077b5;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .footer-compliance {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            text-align: right;
        }

        .compliance-seal {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .compliance-icon {
            width: 50px;
            height: 50px;
            display: inline-block;
            flex-shrink: 0;
        }

        .compliance-text {
            font-size: 13px;
            color: white;
            white-space: nowrap;
        }

        .copyright {
            text-align: right;
            font-size: 12px;
            opacity: 0.8;
            margin-top: 20px;
        }

        /* Responsive - Large Tablets and Desktops */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .logo-section img {
                max-width: 220px;
            }
            
            .contact-info-header {
                font-size: 0.95rem;
            }

            .hero-container {
                gap: 30px;
                padding: 25px 35px 25px 25px;
            }

            .hero-content {
                flex: 0 1 52%;
            }

            .hero-image {
                flex: 0 1 48%;
                max-width: 48%;
                min-width: 0;
                padding-left: 0;
            }

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

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

            .hero-description {
                font-size: 16px;
            }

            /* (deduped) hero-image rules handled above */
        }
        
        /* Responsive - Tablets and Mobile */
        @media (max-width: 768px) {
            .header {
                padding: 15px 10px 10px 10px;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-container {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
                min-height: auto;
            }

            .hero-image {
                max-width: calc(100% - 15px);
                width: 100%;
                padding-right: 15px;
                box-sizing: border-box;
                overflow: hidden;
            }
            
            .hero h1 {
                font-size: 28px;
            }

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

            .hero-description {
                font-size: 15px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
            
            .header-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .logo {
                align-items: center;
                width: 100%;
            }
            
            .logo-section {
                width: 100% !important;
                justify-content: center;
            }
            
            .logo-section img {
                width: 100% !important;
                max-width: 220px !important;
                height: auto;
            }
            
            .contact-info-header {
                font-size: 0.85rem;
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        
        /* Responsive - Small Mobile */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .header {
                padding: 12px 0 8px 0;
            }

            .hero-container {
                padding: 15px;
                gap: 20px;
            }

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

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

            .hero-description {
                font-size: 14px;
            }

            .hero-buttons .btn {
                font-size: 11px;
                padding: 10px 16px;
            }
            
            .header-content {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            
            .logo {
                align-items: center;
                width: 100%;
            }
            
            .logo-section {
                width: 100% !important;
                justify-content: center;
            }
            
            .logo-section img {
                width: 100% !important;
                max-width: 180px !important;
                height: auto;
            }
            
            .contact-info-header {
                font-size: 0.8rem;
                justify-content: center;
                flex-wrap: wrap;
                gap: 3px;
            }
        }
        
        /* Responsive - Extra Small Mobile */
        @media (max-width: 360px) {
            .logo-section img {
                max-width: 150px !important;
            }
            
            .contact-info-header {
                font-size: 0.75rem;
                flex-direction: column;
                gap: 5px;
            }
            
            .contact-info-header .separator {
                display: none;
            }
        }