   body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fdfdfd;
      color: #333;
    }

    .about-us-detailed {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 30px;
    line-height: 1.6;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.about-us-detailed h2 {
    text-align: center;
    color: #ff6600;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-us-detailed h3 {
    color: #1e88e5;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.specialization-section {
    padding: 30px;
    background: #fcfcfc;
    border-radius: 8px;
    margin-bottom: 40px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.product-list li {
    background: #fff5e6;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ff6600;
    font-weight: bold;
    color: #333;
}

.green-pioneer-section {
    margin-top: 40px;
}

.green-pioneer-section p {
    background: #e8f5e9;
    padding: 15px;
    border-left: 5px solid #4CAF50;
    border-radius: 5px;
    font-size: 1.1em;
}

.trusted-brands-section-new {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 30px;
    text-align: center;
    background: #fdf6e9;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
}

.section-title {
    color: #ff6600;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-tagline {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 50px;
    font-weight: 300;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    padding: 0 10px;
}

.brand-card {
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    color: #2c3e50;
    padding: 30px 15px;
    border-radius: 12px;
    font-size: 1.25em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 1px solid #eee;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.25);
    background: #fff8f0;
    color: #ff6600;
    border: 1px solid #ff6600;
}

.gift-box-cta {
    margin-top: 60px;
    font-size: 1.4em;
    font-weight: 700;
    color: #444;
    padding: 30px 40px;
    background: #e8f5e9;
    border-radius: 10px;
    border-left: 5px solid #0a730a;
    text-align: center;
}

.gift-box-cta strong {
    color: #0a730a;
}

@media (max-width: 768px) {
    .about-us-detailed {
        padding: 30px;
    }
    .about-us-detailed h2 {
        font-size: 2em;
    }
    .about-us-detailed h3 {
        font-size: 1.5em;
    }
    .product-list {
        width: 100%;
        gap: 10px;
    }
    .trusted-brands-section-new {
        padding: 30px;
    }
    .section-title {
        font-size: 2em;
    }
    .section-tagline {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .brand-card {
        font-size: 1.1em;
        padding: 20px 10px;
    }
    .gift-box-cta {
        font-size: 1.2em;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-us-detailed {
        margin: 30px auto;
        padding: 20px 10px;
    }
    .about-us-detailed h2 {
        font-size: 1.8em;
    }
    .trusted-brands-section-new {
        margin: 30px auto;
        padding: 20px 10px;
    }
    .section-title {
        font-size: 1.8em;
    }
    .brand-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .brand-card {
        font-size: 1em;
        padding: 15px;
    }
}