* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            padding: 20px;
            width:1400px;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
        }

        table td[class="column"], .column {
              width: 75% !important;
            }

        header {
              width: 100%;
              height: 100px;
              background-color: black;
              position: relative;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              align-items: center;
              z-index: 900;
              clear:both;
            }

        #editable2 .column-content p {
            text-align:center;
            }

        #editable18 {
            padding-top: 58px;
            padding-bottom: 58px;
            padding-left: 40px;
            }

        #editable25 {
            padding-top: 58px !important;
            padding-left: 90px !important;
            padding-right: 90px !important;
            padding-bottom: 58px !important;
        }

        #editable18 h2 {
            margin-left: 40px;
            line-height: 1.05 !important;
            }
        
        /* Floating Column Styles */
        .floating-column {
            float: left;
            width: 450px;
            margin-right: 30px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .column-div {
            width: 100%;
            height: 243px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        
        .column-div:last-child {
            border-bottom: none;
        }
        
        .column-div:hover {
            transform: translateY(-3px);
        }
        
        /* Background Images */
        #div1 {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media313.jpg');
            background-size: cover;
            background-position: center;
        }
        
        #div2 {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media310.jpg');
            background-size: cover;
            background-position: center;
        }
        
        #div3 {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media307.jpg');
            background-size: cover;
            background-position: center;
        }
        
        #div4 {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media306.jpg');
            background-size: cover;
            background-position: center;
        }
        
        #div5 {
            background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
        }
        
        /* Image Overlays */
        .column-div::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
            z-index: 1;
        }
        
        .column-div::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            z-index: 1;
        }
        
        .text-container {
            position: absolute;
            bottom: 25px;
            left: 25px;
            right: 25px;
            text-align: left;
            z-index: 2;
        }
        
        .div-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-align: left;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            line-height: 1.3;
        }
        
        /* Content Section */
        .content-section {
            margin-left: 480px;
            padding: 25px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-height: 400px;
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            text-align: center;
              font-family: Montserrat;
        }

        h2 {
            color: #2c3e50;
            margin-bottom: 10px;
              font-family: Montserrat;
              text-align:center !important;
        }
        
        p {
            margin-bottom: 20px;
            color: #7f8c8d;
              font-family: Montserrat;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* CSS-Only Accordion Styles */
        .faq-title {
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
            padding-bottom: 15px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .accordion {
            width: 100%;
            margin-top: 10px;
        }
        
        .accordion-item {
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
            /*border: 1px solid #e0e0e0;*/
        }
        
        /* Hide the checkbox */
        .accordion-input {
            display: none;
        }
        
        /* Style the label as the clickable header */
        .accordion-label {
            display: block;
            /* background-color: #4a6fa5; */
            color: #ad4326;
            padding: 18px 20px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            transition: background-color 0.3s ease;
        }
        
        .accordion-label:hover {
            /* background-color: #3a5a80;*/
        }
        
        /* Plus/minus icon */
        .accordion-label::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: normal;
            transition: transform 0.3s ease;
        }
        
        /* Content area - initially collapsed */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            background-color: #f9f9f9;
            transition: max-height 0.5s ease, padding 0.3s ease;
        }
        
        .accordion-content p {
            text-align: left;
            margin-bottom: 15px;
            color: #555;
        }
        
        .accordion-content p:last-child {
            margin-bottom: 0;
        }
        
        /* When checkbox is checked */
        .accordion-input:checked + .accordion-label {
            background-color: #fff;
        }
        
        .accordion-input:checked + .accordion-label::after {
            content: '-';
            transform: translateY(-50%) rotate(0deg);
        }
        
        .accordion-input:checked + .accordion-label + .accordion-content {
            max-height: 500px;
            padding: 20px;
        }
        
        /* Optional: Open first FAQ by default */
        #faq1:checked + .accordion-label + .accordion-content {
            max-height: 500px;
            padding: 20px;
        }
        
        /* Contact info box */
        .contact-info {
            margin-top: 30px;
            padding: 15px;
            background-color: #f0f7ff;
            border-radius: 6px;
        }
        
        .contact-info h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .contact-info p {
            text-align: left;
            color: #555;
            margin-bottom: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1000px) {
            .floating-column {
                float: none;
                width: 100%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .content-section {
                margin-left: 0;
            }
        }
        
        @media (max-width: 768px) {
            .div-title {
                font-size: 1.5rem;
            }
            
            .accordion-label {
                padding: 15px;
                font-size: 1rem;
            }
            
            .accordion-label::after {
                right: 15px;
            }
        }

/*--------------- End of 2 column styles ----------------*/

        
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        /* Three Column Layout */
        .three-column-layout {
            display: flex;
            gap: 25px; /* This creates the 25px gutter between columns */
            margin-bottom: 40px;
        }
        
        .column {
            flex: 1; /* Each column takes equal width */
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .column:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        #editable23 .column:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.0);
        }
        
        /* Column Headers with Background Images */
        .column-header,
        .column-header-2 {
            padding: 25px 25px 20px;
            color: white;
            height: 234px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: visible;
        }
        
        .column-header-2 {
            height: 160px;
        }
        
        /* Background images for each column header */
        .column:nth-child(1) .column-header {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media311.png');
            background-size: cover;
            background-position: center;
        }
        
        .column:nth-child(2) .column-header {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media303.png');
            background-size: cover;
            background-position: center;
        }
        
        .column:nth-child(3) .column-header {
            background-image: url('https://app.greenrope.com/users/myteam49570/Media305.png');
            background-size: cover;
            background-position: center;
        }
        
        /* Text positioning */
        .column-title, .column-subtitle {
            position: relative;
            z-index: 2; /* Ensure text appears above the overlay */
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .column-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .column-subtitle {
            font-size: 1rem;
            opacity: 0.95;
            font-weight: 300;
        }
        
        /* Column Content */
        .column-content {
            padding: 25px;
        }
        
        .column-content p {
            margin-bottom: 18px;
            color: #555;
            text-align: left;
        }

        #editable23 .column-content p {
            text-align: center;
        }
        
        .column-content p:last-child {
            margin-bottom: 0;
        }
        
        /* Feature Lists */
        .feature-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .feature-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4a6fa5;
            font-weight: bold;
        }

        .headshot {
            max-width: 130px !important;
              align: center;
              position: relative;
              float: left;
              margin: 0 auto;
        }
        
        /* Column Footer */
        .column-footer {
            padding: 20px 25px;
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
            text-align: center;
        }
        
        .btn {
            display: inline-block;
            background-color: #4a6fa5;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #3a5a80;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Column-specific button colors */
        .column:nth-child(1) .btn {
            background-color: #4a6fa5;
        }
        
        .column:nth-child(2) .btn {
            background-color: #2ecc71;
        }
        
        .column:nth-child(3) .btn {
            background-color: #e74c3c;
        }
        
        .column:nth-child(1) .btn:hover {
            background-color: #3a5a80;
        }
        
        .column:nth-child(2) .btn:hover {
            background-color: #27ae60;
        }
        
        .column:nth-child(3) .btn:hover {
            background-color: #c0392b;
        }
        
        .column:nth-child(1) .feature-list li:before {
            color: #4a6fa5;
        }
        
        .column:nth-child(2) .feature-list li:before {
            color: #2ecc71;
        }
        
        .column:nth-child(3) .feature-list li:before {
            color: #e74c3c;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .three-column-layout {
                flex-wrap: wrap;
            }
            
            .column {
                flex: calc(50% - 12.5px); /* Two columns on medium screens */
                margin-bottom: 25px;
            }
            
            .column:last-child {
                flex: 100%; /* Last column takes full width on medium screens */
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding: 20px;
            }
            
            .three-column-layout {
                flex-direction: column;
                gap: 20px;
            }
            
            .column {
                flex: 100%; /* Single column on small screens */
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .column-title {
                font-size: 1.4rem;
            }
            
            .column-header {
                height: 360px; /* Slightly smaller on mobile */
            }
        }
        
        /* Additional Info Section */
        .additional-info {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }
        
        .additional-info h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .additional-info p {
            color: #555;
            margin-bottom: 15px;
            text-align: left;
        }
        
        /* How to customize section */
        .customization-guide {
            background-color: #f0f7ff;
            border-left: 4px solid #4a6fa5;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .customization-guide h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .code-example {
            background-color: #2c3e50;
            color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            margin: 15px 0;
            overflow-x: auto;
        }

/* ------------------- End of 3-column styles ------------------- */

.site-header {
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            height: 120px;
            position: relative;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
        }
        
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: #4a6fa5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }
        
        .logo-text {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        /* Navigation Menu - Desktop */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: #4a6fa5;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4a6fa5;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 18px;
            align-items: center;
            padding: 0 20px;
            border-left: 1px solid #eee;
            border-right: 1px solid #eee;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f5f7fa;
            color: #4a6fa5;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #4a6fa5;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Newsletter Button */
        .newsletter-btn {
            background-color: #4a6fa5;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .newsletter-btn:hover {
            background-color: #3a5a80;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(58, 90, 128, 0.2);
        }
        
        /* Hamburger Menu Button - Hidden on Desktop */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #2c3e50;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 120px;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
            z-index: 999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .mobile-menu.active {
            max-height: 500px;
        }
        
        .mobile-nav-links {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .mobile-nav-links li {
            margin-bottom: 15px;
        }
        
        .mobile-nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            color: #4a6fa5;
        }
        
        .mobile-social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .mobile-newsletter-btn {
            width: 100%;
            text-align: center;
        }
        
        /* Mobile Menu Checkbox Hack */
        #mobile-menu-toggle {
            display: none;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 25px;
            }
            
            .nav-links {
                gap: 20px;
            }
        }
        
        @media (max-width: 900px) {
            /* Hide desktop navigation */
            .nav-menu {
                display: none;
            }
            
            /* Show hamburger button */
            .hamburger-btn {
                display: flex;
            }
            
            /* Show mobile menu when checkbox is checked */
            #mobile-menu-toggle:checked ~ .mobile-menu {
                display: block;
            }
            
            /* Hamburger animation when menu is open */
            #mobile-menu-toggle:checked + .hamburger-btn .hamburger-line:nth-child(1) {
                transform: translateY(10.5px) rotate(45deg);
            }
            
            #mobile-menu-toggle:checked + .hamburger-btn .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            #mobile-menu-toggle:checked + .hamburger-btn .hamburger-line:nth-child(3) {
                transform: translateY(-10.5px) rotate(-45deg);
            }
            
            /* Adjust header height for mobile */
            .site-header {
                height: 80px;
            }
            
            .mobile-menu {
                top: 80px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 0 15px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }