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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: white;
    color: #2c5530;
    padding: 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.header-content {
    background-color: #1e4d8b;
    padding: 15px 20px;
    position: relative;
}

.business-info h1 {
    font-size: 2.2em;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: center;
}

.business-info p {
    margin: 2px 0;
    font-size: 0.95em;
    color: #2c5530;
    line-height: 1.3;
}

.business-info a {
    color: #2c5530;
    text-decoration: none;
}

.business-info a:hover {
    color: #3a6b3f;
    text-decoration: underline;
}

/* Header Contact Info */
.header-contact-info {
    background-color: white;
    padding: 5px 20px;
    font-size: 0.85em;
    color: #2c5530;
    text-align: center;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Social icons container to keep them together */
.social-icons-group {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

/* Brand Filter Styles */
.brand-filter-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.brand-filter-container label {
    font-weight: bold;
    color: #2c5530;
    font-size: 0.9em;
    white-space: nowrap;
}

#brandFilter {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-size: 0.9em;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 150px;
}

#brandFilter:hover {
    border-color: #2c5530;
}

#brandFilter:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

/* Brands Banner */
.brands-banner {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.brands-banner img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.header-contact-info .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.header-contact-info .social-icon:hover {
    opacity: 0.7;
}

.header-contact-info .social-icon img {
    display: block;
    vertical-align: middle;
}

/* Navigation Styles */
nav {
    background-color: white;
    padding: 10px 20px;
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    line-height: 0.8;
}

nav li {
    margin: 0;
    line-height: 0.8;
}

nav a {
    display: inline-block;
    color: #2c5530;
    text-decoration: underline;
    padding: 0;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.85em;
    line-height: 0.8;
}

nav a:hover {
    color: #3a6b3f;
}

nav a:active,
nav a.current {
    color: #1e3a21;
    font-weight: bold;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 25px 0;
    background-color: #f9f9f9;
    margin-bottom: 25px;
    border-radius: 8px;
}

.hero h2 {
    font-size: 2em;
    color: #2c5530;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Product Grid */
.products {
    margin-bottom: 25px;
}

.products h2 {
    font-size: 1.8em;
    color: #2c5530;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 1.2em;
    color: #2c5530;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-item p {
    color: #666;
    line-height: 1.3;
    font-size: 0.95em;
}

/* Product Detail Pages */
.product-detail {
    max-width: 800px;
    margin: 0 auto;
}

.product-detail h1 {
    font-size: 2em;
    color: #2c5530;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.product-images img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.product-section {
    margin: 20px 0;
}

.product-section h2 {
    font-size: 1.5em;
    color: #2c5530;
    margin-bottom: 10px;
    border-bottom: 2px solid #2c5530;
    padding-bottom: 3px;
    line-height: 1.2;
}

.product-section h3 {
    font-size: 1.2em;
    color: #3a6b3f;
    margin: 15px 0 8px 0;
    line-height: 1.2;
}

.specs-list {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.specs-list ul {
    list-style-type: disc;
    margin-left: 20px;
}

.specs-list li {
    margin: 5px 0;
    line-height: 1.3;
}

.price {
    background-color: #1e4d8b;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.price h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.price p {
    font-size: 1.2em;
}

.videos {
    margin: 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Section */
.contact-info {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 25px;
}

.contact-info h2 {
    font-size: 1.6em;
    color: #2c5530;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-details {
    margin-top: 15px;
}

.contact-details p {
    margin: 5px 0;
    font-size: 0.95em;
    line-height: 1.3;
}

.contact-details a {
    color: #2c5530;
    text-decoration: none;
    font-weight: bold;
}

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

/* Store Info Section */
.store-info {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 25px;
}

.store-details p {
    margin: 5px 0;
    font-size: 0.95em;
    line-height: 1.3;
}

.store-details a {
    color: #2c5530;
    text-decoration: none;
    font-weight: bold;
}

.store-details a:hover {
    text-decoration: underline;
}

.order-info {
    background-color: #e8f0ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #1e4d8b;
    margin: 20px 0;
}

.order-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.3em;
    line-height: 1.2;
}

.order-info p {
    line-height: 1.3;
    margin: 8px 0;
}

.order-info ul {
    margin: 10px 0;
}

.order-info li {
    line-height: 1.3;
    margin: 5px 0;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content h1 {
    font-size: 2.5em;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
}

.about-content h2 {
    font-size: 1.8em;
    color: #2c5530;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #2c5530;
    padding-bottom: 5px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Get Quote Button */
.get-quote-btn {
    display: block;
    margin: 20px auto;
    padding: 12px 20px;
    background-color: #1e4d8b;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.9em;
    cursor: pointer;
    border: none;
    width: 150px;
    height: 44px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-quote-btn:hover {
    background-color: #2c5530;
    color: white !important;
}

/* Quote Form Modal Styles */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.quote-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.quote-modal-header {
    background-color: #2c5530;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.quote-modal-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.close-modal {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    margin-top: -5px;
}

.close-modal:hover {
    opacity: 0.7;
}

.quote-form-container {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c5530;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.form-group label .required {
    color: #d9534f;
    font-weight: normal;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    background-color: #1e4d8b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 30px auto 0;
}

.submit-button:hover {
    background-color: #2c5530;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-message {
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: #1e4d8b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        text-align: center;
    }
    
    .business-info h1 {
        font-size: 1.8em;
    }
    
    .business-info p {
        font-size: 1em;
    }
    
    /* Mobile brand filter */
    .header-contact-info {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }
    
    .brand-filter-container {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    #brandFilter {
        flex: 1;
        min-width: 120px;
    }
    
    /* Keep social icons horizontal on mobile */
    .social-icons-group {
        flex-direction: row !important;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: block !important;
        float: right;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        border: 1px solid #ddd;
        border-top: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0;
        width: auto;
        min-width: 200px;
        max-width: 300px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav li {
        border-bottom: 1px solid #eee;
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        padding: 5px 20px;
        display: block;
        text-decoration: underline;
        color: #2c5530;
        font-size: 0.85em;
        line-height: 1;
    }
    
    nav a:hover {
        background-color: #f9f9f9;
        color: #3a6b3f;
    }
    
    .hero h2 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    main {
        padding: 15px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .store-info {
        padding: 25px 20px;
    }
}

/* Category Page Specific Styles */
.category-navigation {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}

.category-navigation h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.category-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-nav-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c5530;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #2c5530;
}

.category-nav-link:hover {
    background-color: white;
    color: #2c5530 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 85, 48, 0.2);
}

.category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px; /* Account for fixed header if any */
}

.integrated-category-banner {
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 5px 30px;
    margin: 40px -20px 30px -20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    text-align: center;
}

.integrated-category-banner.scrolled {
    box-shadow: 0 6px 16px rgba(44, 85, 48, 0.4);
}

/* Navigation Jump Buttons */
.nav-jump-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #2c5530;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.nav-jump-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-jump-top {
    left: 10px;
}

.nav-jump-bottom {
    right: 10px;
}

@media (max-width: 768px) {
    .nav-jump-btn {
        font-size: 0.75em;
        padding: 6px 10px;
    }
    
    .nav-jump-top {
        left: 5px;
    }
    
    .nav-jump-bottom {
        right: 5px;
    }
}

.integrated-category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.integrated-category-banner:hover::before {
    left: 100%;
}

.integrated-category-title {
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: white;
}

.integrated-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 80px; /* Add padding to prevent overlap with jump buttons */
}

.integrated-nav-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9em;
}

.integrated-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.integrated-nav-link.current {
    background-color: white;
    color: #2c5530 !important;
    border-color: white;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.integrated-nav-link.current:hover {
    background-color: #f8f9fa;
    color: #2c5530 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.view-details-btn {
    display: inline-flex;
    margin: 10px 5px;
    padding: 12px 20px;
    background-color: #2c5530;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.9em;
    width: 150px;
    height: 44px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.view-details-btn:hover {
    background-color: #3a6b3f;
    color: white !important;
}

.product-item .button-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.product-item .get-quote-btn {
    display: inline-flex !important;
    margin: 10px 5px !important;
    width: 150px !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Product Detail Page Styles */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.product-images {
    text-align: center;
}

.main-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.image-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #2c5530;
}

.product-info {
    padding: 20px 0;
}

.product-info h1 {
    color: #2c5530;
    margin-bottom: 10px;
}

.product-type {
    color: #1e4d8b;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.quote-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.quote-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #2c5530;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 20px;
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-item h3 {
    margin-bottom: 10px;
}

.blog-item h3 a {
    color: #2c5530;
    text-decoration: none;
}

.blog-item h3 a:hover {
    text-decoration: underline;
}

.blog-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.read-more {
    color: #1e4d8b;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .category-title {
        margin: 40px -10px 30px -10px;
        padding: 15px 20px;
        font-size: 1.5em;
    }
    
    .section-navigation {
        font-size: 0.8em;
        padding: 8px;
    }
    
    .section-nav-link {
        margin: 0 4px;
        padding: 3px 6px;
    }
    
    .section-nav-link:not(:last-child)::after {
        margin-left: 8px;
    }
    
    .product-item .button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .view-details-btn,
    .product-item .get-quote-btn {
        width: 200px;
        margin: 5px 0;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-detail {
        padding: 10px;
    }
    
    .image-thumbnails {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .business-info h1 {
        font-size: 1.5em;
    }
    
    .hero h2 {
        font-size: 1.6em;
    }
    
    .product-detail h1 {
        font-size: 2em;
    }
    
    .product-images {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .quote-form-container {
        padding: 20px;
    }
}


/* Homepage specific styles */
.view-details-btn {
    display: inline-flex;
    margin: 10px 5px;
    padding: 12px 20px;
    background-color: #2c5530;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.9em;
    width: 200px;
    height: 44px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.view-details-btn:hover {
    background-color: #3a6b3f;
    color: white !important;
}

/* Homepage product item overrides */
.product-item {
    position: relative;
    padding-bottom: 20px;
}

.product-item .button-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Override the centered get-quote-btn for homepage */
.product-item .get-quote-btn {
    display: inline-flex !important;
    margin: 10px 5px !important;
    width: 150px !important;
    align-items: center !important;
    justify-content: center !important;
}


/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-container h1 {
    font-size: 2em;
    color: #2c5530;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.contact-form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}
