/* Base styles remain the same */
:root {
  --primary-color: #ea580c;
  --secondary-color: #c2410c;
  --text-color: #333;
  --secondary-light-color: #fbbf24;
  --dark-color: #111827;
  --light-color: #f9fafb;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #4b5563;
  --gray-light-color: #6b7280;
  --gray-dark-color: #374151;
  --gray-bg-color: #f3f4f6;
  --gray-light-bg-color: #f7f7f7;
  --gray-dark-bg-color: #111827;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Remove fixed height to prevent overflow */
    min-height: 100%;
    width: 100%;
}

.text-center {
    text-align: center;
}

/* About Page Styles */
.about-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 20px;
}

.about-hero .container h1, .about-hero .container h2{
    text-align: center;
}

.about-hero .container h1{
    color: var(--primary-color);
}

.about-hero p{
    text-align: left;
    font-size: 1.2rem;
    color: #4b5563;
}

.about-content {
    padding: 60px 0;
}

/* Updated team section styles */
.team-section {
    padding: 60px 0;
    background: #f8f9fa;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll */
}

.team-section h2{
    font-size: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 5px;
}

.team-member {
    text-align: center;
    padding: 15px;
    width: 100%;
}

.team-member img {
    width: 100%;
    max-width: 250px; /* Limit image size */
    height: 350px; /* Maintain aspect ratio */
    margin-bottom: 15px;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Updated mission-vision section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
    padding: 0 15px;
}

.mission-box {
    width: 100%;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Updated hero section */
.products-hero {
    padding: 30px 0;
    width: 100%;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updated category section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 15px;
}

.category-card {
    width: 100%;
    background: white;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-info {
    padding: 10px;
    text-align: left;
}

.category-info h2{
    color: var(--primary-color);
}

ul li{
    list-style: none;
    margin: 10px 0;
}

.product-features {
    padding: 60px 0;
    background: #f8f9fa;
}

.product-features h2{
    font-size: 40px;
}

/* Updated feature section styles */
.product-features {
    padding: 40px 0;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll */
}

.product-features h2{
    font-size: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Typography adjustments for mobile */
@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero h2 {
        font-size: 20px;
    }

    .about-hero p {
        font-size: 16px;
        padding: 0 15px;
    }

    .team-section h2,
    .category-section h1,
    .product-features h2 {
        font-size: 2rem;
    }

    .feature-icon {
        font-size: 40px;
    }

    .btn {
        padding: 10px 20px;
    }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .mission-vision,
    .team-grid,
    .feature-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        max-width: 200px;
    }

    .products-hero {
        min-height: 200px;
    }
}

