        :root {
            --primary: #1b5e20;
            --primary-light: #43a047;
            --primary-dark: #0c390f;
            --secondary: #66bb6a;
            --accent: #388e3c;
            --text-dark: #212121;
            --text-light: #757575;
            --white: #ffffff;
            --light-bg: #f9fbf9;
            --border-radius: 10px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* Header styles */
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-image {
            height: 100px;
            margin-right: 10px;
        }

        .nav {
            display: flex;
            align-items: center;
        }

        .nav-list {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            margin: 0 15px;
        }

        .nav-link {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-button {
            background-color: var(--primary);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid var(--primary);
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        /* Language switcher */
        .language-switcher {
            display: flex;
            align-items: center;
            margin-left: 20px;
            padding: 5px 10px;
            background-color: #f5f5f5;
            border-radius: 50px;
        }
        
        .lang-btn {
            background: none;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px 8px;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .lang-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .lang-divider {
            color: var(--text-light);
            margin: 0 5px;
        }

        /* Hero section */
        .hero {
            background: linear-gradient(to right, rgba(27, 94, 32, 0.8), rgba(67, 160, 71, 0.8)),
                        url('https://images.unsplash.com/photo-1622383563227-04401ab4e5ea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 180px 0 100px;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-highlight {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            backdrop-filter: blur(5px);
        }

        .mexican-flag {
            vertical-align: middle;
            height: 16px;
            margin-left: 5px;
        }

        /* Services section */
        .services {
            background-color: var(--white);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
        }

        .service-content {
            padding: 30px;
            text-align: center;
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .service-description {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        /* Portfolio section */
        .portfolio {
            background-color: var(--light-bg);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            box-shadow: var(--box-shadow);
            background-color: var(--white);
            transition: var(--transition);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-content {
            padding: 25px;
        }

        .portfolio-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }

        .portfolio-description {
            color: var(--text-light);
        }

        /* Estimate section */
        .estimate {
            background-color: var(--white);
        }

        .estimate-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 40px;
            position: relative;
        }

        .estimate-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
        }

        .estimate-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .form-input,
        .form-select {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
        }

        .submit-button {
            background-color: var(--primary);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            grid-column: span 2;
            justify-self: start;
        }

        .submit-button:hover {
            background-color: var(--primary-dark);
        }

        .estimate-result {
            margin-top: 30px;
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: 5px;
            text-align: center;
            display: none;
        }

        .estimate-result.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .estimate-price {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .estimate-message {
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        
        /* Pricing Tiers */
        .pricing-tiers {
            margin-bottom: 50px;
        }
        
        .pricing-tier-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pricing-tier {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-tier:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-tier.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border: 2px solid var(--primary-light);
            z-index: 2;
        }
        
        .pricing-tier.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }
        
        .pricing-header {
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            color: var(--white);
            padding: 20px;
            text-align: center;
        }
        
        .pricing-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .pricing-range {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .pricing-body {
            padding: 30px 20px;
            flex-grow: 1;
        }
        
        .pricing-rate {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 20px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            color: var(--text-light);
            position: relative;
            padding-left: 25px;
        }
        
        .pricing-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .pricing-cta {
            padding: 20px;
            text-align: center;
        }
        
        .tier-button {
            background-color: var(--primary);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            padding: 10px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid var(--primary);
        }
        
        .tier-button:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        /* Slider Estimate */
        .slider-estimate-container {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 40px;
            margin-bottom: 50px;
            position: relative;
        }
        
        .slider-estimate-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
        }
        
        .slider-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 10px;
        }
        
        .slider-description {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .slider-controls {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .slider-group {
            display: flex;
            flex-direction: column;
        }
        
        .slider-wrapper {
            position: relative;
            padding: 10px 0;
        }
        
        .range-slider {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            appearance: none;
            background: #e0e0e0;
            outline: none;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            border: 3px solid var(--white);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .range-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            border: 3px solid var(--white);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .range-slider::-webkit-slider-thumb:hover {
            background: var(--primary-dark);
        }
        
        .range-slider::-moz-range-thumb:hover {
            background: var(--primary-dark);
        }
        
        .slider-markers {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .service-selection {
            margin-top: 20px;
        }
        
        .service-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 10px;
            background-color: #f1f8e9;
            padding: 15px;
            border-radius: var(--border-radius);
        }
        
        .service-included {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .included-icon {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .option-text {
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .slider-result {
            margin-top: 40px;
        }
        
        .result-card {
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .result-header {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .result-price {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .result-note {
            color: var(--text-light);
            font-size: 0.9rem;
            font-style: italic;
        }
        
        .form-section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 25px;
            text-align: center;
        }

        /* Team section */
        .team {
            background-color: var(--light-bg);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .team-member {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-light));
        }

        .team-content {
            padding: 30px;
            text-align: center;
        }

        .team-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .team-nickname {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--primary-light);
            margin-bottom: 15px;
            font-style: italic;
        }

        .team-quote {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 20px;
            padding: 0 15px;
        }

        .team-contact {
            margin-top: 20px;
        }

        .team-phone {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .team-email {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .team-email:hover {
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-logo-image {
            height: 400px;

        }

        .footer-about {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 12px;
        }

        .footer-link a {
            color: #b9b9b9;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-link a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .footer-contact-icon {
            margin-right: 15px;
            color: var(--secondary);
        }

        .footer-contact-text {
            line-height: 1.6;
        }

        .footer-bottom {
            margin-top: 50px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-copyright {
            color: #b9b9b9;
            font-size: 0.9rem;
        }

        .footer-tagline {
            color: #b9b9b9;
            font-size: 0.9rem;
            margin-top: 5px;
            font-style: italic;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .estimate-form {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .submit-button {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
            }

            .nav-item {
                margin: 10px 0;
                width: 100%;
            }

            .nav-link {
                display: block;
                padding: 10px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .estimate-container {
                padding: 30px 20px;
            }
        }