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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background-color: #16a34a;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #15803d;
}

.btn-secondary {
    background-color: transparent;
    color: #16a34a;
    padding: 12px 24px;
    border: 2px solid #16a34a;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #16a34a;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    padding: 10px 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #16a34a;
    color: #16a34a;
}

.cta-button {
    background-color: #16a34a;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #15803d;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

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

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

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

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #16a34a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-metric {
    font-weight: 600;
    color: #16a34a;
    margin-top: 1rem;
}

/* Products */
.products {
    padding: 80px 0;
}

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

/* Custom Solutions Card - Full Width Row on Large Screens */
@media (min-width: 1130px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .product-card:last-child img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .product-card:last-child .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .product-card:last-child h3 {
        margin-bottom: 1rem;
        font-size: 1.75rem;
    }
    
    .product-card:last-child ul {
        margin-bottom: 1.5rem;
    }
    
    .product-card:last-child .btn-outline {
        align-self: flex-start;
    }
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #1e293b;
}

.product-card ul {
    padding: 0 1rem;
    list-style: none;
    flex: 1;
}

.product-card li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1rem;
}

.product-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.product-card .btn-outline {
    margin: 1rem;
    margin-top: auto;
    align-self: start;
    text-align: center;
}

/* Applications */
.applications {
    padding: 80px 0;
    background-color: #f8fafc;
}

.app-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #d1d5db;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #16a34a;
    background-color: #16a34a;
    color: white;
}

.tab-content {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.tab-panel.active {
    display: grid;
}

.tab-panel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tab-text {
    padding: 2rem;
}

/* Technology */
.technology {
    padding: 80px 0;
}

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

.tech-features {
    list-style: none;
    margin: 1.5rem 0;
}

.tech-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Comparison Table */
.comparison {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.comparison-table {
    overflow-x: auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.glean-col {
    background-color: #dcfce7;
    font-weight: 600;
    color: #15803d;
}

/* Massachusetts Section */
.massachusetts {
    padding: 80px 0;
}

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

.ma-benefit {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.ma-benefit h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.ma-benefit ul {
    list-style: none;
}

.ma-benefit li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.ma-benefit li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.ma-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16a34a 0%, #088336 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.cta-option {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.cta-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-option p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.contact-info {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color:#16a34a ;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #16a34a;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #16a34a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #16a34a;
}

.footer-bottom {
    border-top: 1px solid #16a34a;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom a {
   color:#16a34a;
   text-decoration: none;
}
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #16a34a;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #16a34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .tab-panel {
        grid-template-columns: 1fr;
    }
    
    .tab-panel img {
        height: 200px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .value-grid,
    .product-grid,
    .ma-benefits,
    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }



/* Quote Form Styles */
.quote-form-section {
    padding: 120px 0 80px;
    background-color: #f8fafc;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-header h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.quote-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.product-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-option {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.product-option:hover {
    border-color: #16a34a;
}

.product-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.product-option label {
    cursor: pointer;
    margin-bottom: 0;
}

.product-option label strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.product-option label span {
    color: #64748b;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    padding-top: 1rem;
}

.form-submit .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-benefits {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.quote-benefits h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #16a34a;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.contact-card {
    background-color: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #60a5fa;
}

/* Responsive Design for Quote Form */
@media (max-width: 768px) {
    .quote-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-selection {
        grid-template-columns: 1fr;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
}


/* Contact Page Styles */
.contact-section {
    padding: 120px 0 80px;
    background-color: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Contact Card - Full Width Row on Large Screens */
@media (min-width: 1130px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card-wide {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-card-wide .contact-card-content {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex: 1;
    }
    
    .contact-card-wide .contact-icon {
        flex-shrink: 0;
    }
    
    .contact-card-wide .contact-info {
        flex: 1;
    }
    
    .contact-card-wide h3 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .contact-card-wide p {
        margin-bottom: 1rem;
    }
    
    .contact-card-wide .contact-details {
        margin-bottom: 0;
    }
    
    .contact-card-wide .btn-outline {
        flex-shrink: 0;
        align-self: center;
    }
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

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

.office-info {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.office-info h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

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

.office-details h3 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.office-details p {
    color: #64748b;
    line-height: 1.6;
}

.general-contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.general-contact-form h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}



/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .office-details {
        grid-template-columns: 1fr;
    }
    
 
    .office-info,
    .general-contact-form {
        padding: 2rem;
    }
}


/* Impact Calculator Styles */
.impact-calculator-hero {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 4rem 0;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.calculator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-card {
    background: white;
    color: #1f2937;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.calculator-card h2 {
    color: #16a34a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-form {
    margin: 2rem 0;
}

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

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.results-container {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.results-container h3 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.impact-metric {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metric-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.calculator-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.calculator-benefits h3 {
    margin-bottom: 1rem;
    color: white;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list i {
    color: #10b981;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-header h1 {
        font-size: 2rem;
    }
    
    .impact-results {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
}

/* Logo Link Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link:hover .logo-text {
    color: #16a34a;
}

/* Fix header overlap issue */
body {
    padding-top: 80px; /* Add space for fixed header */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ensure main content starts below header */
main {
    margin-top: 0;
}

section:first-child {
    padding-top: 2rem;
}

/* About Page Specific Styles */
.about-hero-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero-green h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-hero-green p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-green .btn-primary {
    background-color: #f0fdf4;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-hero-green .btn-primary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Mission Vision Values Section */
.mission-vision-values {
    padding: 80px 0;
    background-color: white;
}

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

.mv-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.mv-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mv-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.story-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.story-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Manufacturing Excellence Section */
.manufacturing-excellence {
    padding: 80px 0;
    background-color: white;
}

.manufacturing-excellence h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.excellence-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.excellence-card:hover {
    transform: translateY(-5px);
}

.excellence-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.excellence-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.excellence-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.excellence-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Innovation & Research Section */
.innovation-research {
    padding: 80px 0;
    background-color: #f8fafc;
}

.innovation-research h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.innovation-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
}

.innovation-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.innovation-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About CTA Green Section */
.about-cta-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta-green h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-cta-green p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-cta-green .btn-primary {
    background-color: white;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta-green .btn-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-cta-green .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta-green .btn-outline:hover {
    background-color: white;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-green h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid,
    .excellence-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-green .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-green h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-green h1 {
        font-size: 1.75rem;
    }
    
    .about-hero-green p {
        font-size: 1rem;
    }
    
    .mv-card,
    .excellence-card,
    .innovation-card {
        padding: 1.5rem;
    }
}

/* Sustainability Page Styles */
.sustainability-hero-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sustainability-hero-green h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.sustainability-hero-green p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-hero-green .btn-primary {
    background-color: #f0fdf4;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sustainability-hero-green .btn-primary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Environmental Impact Section */
.environmental-impact {
    padding: 80px 0;
    background-color: white;
}

.environmental-impact h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.impact-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.impact-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.impact-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Circular Economy Section */
.circular-economy {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.economy-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.economy-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.economy-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.2rem;
    color: white;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.economy-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* LEED Certification Section */
.leed-certification {
    padding: 80px 0;
    background-color: white;
}

.leed-certification h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.leed-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.leed-card:hover {
    transform: translateY(-5px);
}

.leed-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.leed-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.leed-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.leed-card p {
    color: #64748b;
    line-height: 1.6;
}

.leed-documentation {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.leed-documentation h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.leed-documentation p {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

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

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.doc-item i {
    color: #16a34a;
    font-size: 1.2rem;
}

.doc-item span {
    color: #374151;
    font-weight: 500;
}

/* Life Cycle Assessment Section */
.life-cycle-assessment {
    padding: 80px 0;
    background-color: #f8fafc;
}

.life-cycle-assessment h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.lca-grid {
    display: grid;
    gap: 2rem;
}

.lca-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lca-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.glean-side h4,
.traditional-side h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.glean-side h4 {
    color: #16a34a;
}

.traditional-side h4 {
    color: #dc2626;
}

.glean-side ul,
.traditional-side ul {
    list-style: none;
    padding: 0;
}

.glean-side li,
.traditional-side li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #64748b;
}

.glean-side li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.traditional-side li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Sustainability Goals Section */
.sustainability-goals {
    padding: 80px 0;
    background-color: white;
}

.sustainability-goals h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.goal-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.goal-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.goal-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.goal-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.goal-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #64748b;
}

.goal-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Sustainability Calculator Section */
.sustainability-calculator {
    padding: 80px 0;
    background-color: #f8fafc;
}

.sustainability-calculator h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.calculator-tool {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.calculator-tool h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.calculator-inputs {
    margin-bottom: 2rem;
}

.calculator-inputs .input-group {
    margin-bottom: 1.5rem;
}

.calculator-inputs label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.calculator-inputs input,
.calculator-inputs select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.calculator-inputs input:focus,
.calculator-inputs select:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.calculator-results {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.calculator-results h4 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.calculator-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.calculator-info h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.calculator-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.impact-examples h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.example-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.example-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.example-item span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Sustainability CTA Green Section */
.sustainability-cta-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sustainability-cta-green h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.sustainability-cta-green p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.sustainability-cta-green .btn-primary {
    background-color: white;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sustainability-cta-green .btn-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.sustainability-cta-green .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sustainability-cta-green .btn-outline:hover {
    background-color: white;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design for Sustainability Page */
@media (max-width: 768px) {
    .sustainability-hero-green h1 {
        font-size: 2rem;
    }
    
    .economy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-grid,
    .leed-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sustainability-cta-green .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sustainability-cta-green h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sustainability-hero-green h1 {
        font-size: 1.75rem;
    }
    
    .sustainability-hero-green p {
        font-size: 1rem;
    }
    
    .impact-card,
    .leed-card,
    .goal-card {
        padding: 1.5rem;
    }
    
    .documentation-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Page Styles */
.products-hero-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.products-hero-green h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.products-hero-green p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-hero-green .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.products-hero-green .stat {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.products-hero-green .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.products-hero-green .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background-color: white;
}

.product-categories h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content .btn-primary {
    margin-top: auto;
    align-self: start;
    text-align: center;
}

.product-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.spec {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.spec:last-child {
    margin-bottom: 0;
}

.product-features h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Technical Specifications Section */
.technical-specs {
    padding: 80px 0;
    background-color: #f8fafc;
}

.technical-specs h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.specs-comparison {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.comparison-table .advantage {
    color: #16a34a;
    font-weight: 600;
}

/* Installation Benefits Section */
.installation-benefits {
    padding: 80px 0;
    background-color: white;
}

.installation-benefits h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.quality-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.quality-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quality-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quality-icon {
    width: 50px;
    height: 50px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-icon i {
    font-size: 1.2rem;
    color: white;
}

.quality-detail h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.quality-detail p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.certifications h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(173px, 1fr));
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cert-badge i {
    color: #16a34a;
    font-size: 1.2rem;
}

.cert-badge span {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.quality-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Product Selector Section */
.product-selector {
    padding: 80px 0;
    background-color: white;
}

.product-selector h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.application-guide h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.application-grid {
    display: grid;
    gap: 1rem;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.application-item:hover {
    background-color: #e2e8f0;
}

.app-icon {
    width: 50px;
    height: 50px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon i {
    font-size: 1.2rem;
    color: white;
}

.app-content h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.app-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.selector-cta {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.selector-cta h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.selector-cta p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.selector-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Products CTA Green Section */
.products-cta-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.products-cta-green h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.products-cta-green p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.products-cta-green .btn-primary {
    background-color: white;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products-cta-green .btn-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.products-cta-green .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products-cta-green .btn-outline:hover {
    background-color: white;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero-green h1 {
        font-size: 2rem;
    }
    
    .products-hero-green .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .selector-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-cta-green .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-cta-green h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-hero-green h1 {
        font-size: 1.75rem;
    }
    
    .products-hero-green p {
        font-size: 1rem;
    }
    
    .products-hero-green .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .cert-badges {
        grid-template-columns: 1fr;
    }
}

/* Applications Page Styles */
.applications-hero-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.applications-hero-green h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.applications-hero-green p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Application Categories Section */
.application-categories {
    padding: 80px 0;
    background-color: white;
}

.application-categories h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.application-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-card:hover {
    transform: translateY(-5px);
}

.application-image {
    position: relative;
    overflow: hidden;
}

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

.application-card:hover .application-image img {
    transform: scale(1.05);
}

.application-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.application-content .btn-primary {
    margin-top: auto;
    align-self: start;
    text-align: center;
}

.application-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.application-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.application-details h4,
.application-benefits h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.application-details ul,
.application-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.application-details li,
.application-benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.application-details li:before,
.application-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.recommended-products h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-tag {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #16a34a;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Application Selector Section */
.application-selector {
    padding: 80px 0;
    background-color: #f8fafc;
}

.application-selector h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.selector-tool {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.selector-filters {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.selector-filters h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.recommendation-result {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.recommendation-result h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.recommendation-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.recommendation-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recommendation-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rec-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background-color: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Case Studies Preview Section */
.case-studies-preview {
    padding: 80px 0;
    background-color: white;
}

.case-studies-preview h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.case-study-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

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

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.case-study-type {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.case-study-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.case-study-stats .stat {
    background-color: #f8fafc;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Installation Process Section */
.installation-process {
    padding: 80px 0;
    background-color:white;
}

.installation-process h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.installation-benefits h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefit-item i {
    color: #16a34a;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #374151;
    font-size: 0.9rem;
}

/* Technical Support Section */
.technical-support {
    padding: 80px 0;
    background-color:  #f8fafc;
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-text h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.support-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.support-services h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-services ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.support-services li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.support-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.support-contact h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-contact p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Applications CTA Green Section */
.applications-cta-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.applications-cta-green h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.applications-cta-green p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.applications-cta-green .btn-primary {
    background-color: white;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.applications-cta-green .btn-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.applications-cta-green .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.applications-cta-green .btn-outline:hover {
    background-color: white;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Resources Page Styles */
.resources-hero-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.resources-hero-green h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.resources-hero-green p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Resource Categories Section */
.resource-categories {
    padding: 80px 0;
    background-color: white;
}

.resources-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.resource-tab {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #374151;
}

.resource-tab.active,
.resource-tab:hover {
    border-color: #16a34a;
    background-color: #16a34a;
    color: white;
}

.resource-content h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.spec-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.spec-card .spec-details {
    flex: 1;
}

.spec-card .btn-outline {
    margin-top: auto;
    align-self: center;
    width: 100%;
    text-align: center;
}

.spec-details {
    margin-bottom: 2rem;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.spec-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.spec-table td:first-child {
    font-weight: 600;
    color: #1e293b;
}

.spec-features h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.spec-features ul {
    list-style: none;
    padding: 0;
}

.spec-features li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.spec-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Installation Guides */
.installation-guides {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.guide-section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guide-steps {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.step-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Base Preparation Diagram */
.base-prep-diagram {
    margin: 2rem 0;
}

.layer-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.layer {
    padding: 1rem;
    color: white;
    text-align: center;
    font-weight: 600;
}

.prep-instructions h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.prep-instructions ol {
    color: #64748b;
    line-height: 1.6;
}

.prep-instructions li {
    margin-bottom: 0.5rem;
}

/* Installation Steps */
.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.install-step {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.install-step h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.install-step p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Guide Downloads */
.guide-downloads h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.download-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
}

.download-item i {
    color: #16a34a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.download-item p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    gap: 2rem;
}

.case-study-detailed {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study-detailed .case-study-details {
    flex: 1;
}

.case-study-detailed .btn-outline {
    margin-top: auto;
    align-self: center;
    width: calc(100% - 2rem);
    text-align: center;
    border-radius: 6px;
    margin: 1rem;
    margin-top: auto;
}

.case-study-header {
    position: relative;
    overflow: hidden;
}

.case-study-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.case-study-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.case-study-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.case-study-info p {
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.case-study-details {
    padding: 2rem;
}

.project-overview h4,
.project-stats h4,
.project-challenges h4,
.project-results h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.project-overview p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-challenges ul,
.project-results ul {
    list-style: none;
    padding: 0;
}

.project-challenges li,
.project-results li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1rem;
    color: #64748b;
}

.project-challenges li:before,
.project-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Downloads Section */
.downloads-section {
    max-width: 1200px;
    margin: 0 auto;
}

.download-category {
    margin-bottom: 3rem;
}

.download-category h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.download-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-icon {
    flex-shrink: 0;
}

.download-icon i {
    color: #16a34a;
    font-size: 2rem;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.download-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.file-info {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Technical Support Resources */
.technical-support-resources {
    padding: 80px 0;
    background-color: #f8fafc;
}

.technical-support-resources h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.technical-support-resources p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.support-option {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 1.5rem;
    color: white;
}

.support-option h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.support-option p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.support-option strong {
    display: block;
    color: #16a34a;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.support-option span {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Resources CTA Green Section */
.resources-cta-green {
    background-color: #16a34a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.resources-cta-green h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.resources-cta-green p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.resources-cta-green .btn-primary {
    background-color: white;
    color: #16a34a;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resources-cta-green .btn-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.resources-cta-green .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resources-cta-green .btn-outline:hover {
    background-color: white;
    color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design for Applications and Resources Pages */
@media (max-width: 768px) {
    .applications-hero-green h1,
    .resources-hero-green h1 {
        font-size: 2rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .selector-tool {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-comparison {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .applications-cta-green .cta-buttons,
    .resources-cta-green .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .applications-cta-green h2,
    .resources-cta-green h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .applications-hero-green h1,
    .resources-hero-green h1 {
        font-size: 1.75rem;
    }
    
    .applications-hero-green p,
    .resources-hero-green p {
        font-size: 1rem;
    }
    
    .application-card,
    .case-study-card,
    .spec-card {
        padding: 1.5rem;
    }
    
    .case-study-info {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
