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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9f6;
}

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

/* Header styling */
header {
    background-color: #2e5a36; /* Deep Bamboo Green */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro {
    text-align: center;
    margin: 40px 0;
}

.intro h2 {
    color: #2e5a36;
    margin-bottom: 10px;
}



/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}




.product-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid #4a8054;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-image {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #2e5a36;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Buttons */
.btn {
    background-color: #4a8054;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.btn:hover {
    background-color: #2e5a36;
}

/* Contact / Order Form */
.contact-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.contact-section h2 {
    color: #2e5a36;
    margin-bottom: 10px;
    text-align: center;
}

.contact-section p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit {
    background-color: #2e5a36;
}

.btn-submit:hover {
    background-color: #1c3821;
}

/* Footer */
footer {
    background-color: #1c3821;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 { font-size: 2.2rem; }
    .contact-section { padding: 20px; }
}
/* About Us Styling */
.about-us-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    color: #2e5a36;
    margin-bottom: 15px;
    font-size: 2rem;
}

.about-content p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
}

.about-badge {
    background-color: #f1f6f2;
    border: 2px dashed #4a8054;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-badge h3 {
    color: #2e5a36;
    margin-bottom: 5px;
}

.about-badge p {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive adjustment for phones */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Pricing Table Styling */
.pricing-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.pricing-container h2 {
    color: #2e5a36;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bamboo-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.bamboo-table th, .bamboo-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.bamboo-table th {
    background-color: #2e5a36;
    color: white;
    font-weight: bold;
}

.bamboo-table tr:hover {
    background-color: #f9fbf9;
}

.price-tag {
    font-weight: bold;
    color: #2e5a36;
    font-size: 1.1rem;
}

/* Make table responsive on small screens */
@media (max-width: 600px) {
    .bamboo-table, .bamboo-table tbody, .bamboo-table tr, .bamboo-table td {
        display: block;
        width: 100%;
    }
    .bamboo-table th {
        display: none; /* Hide header row on mobile */
    }
    .bamboo-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 10px;
    }
    .bamboo-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: none;
    }
    .bamboo-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #2e5a36;
    }
}
