* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/image/hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px 0;
}

.logo {
    position: absolute;
    top: 20px;
    left: 300px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: url('/image/logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text .brand-main {
    color: #E8F5E8;
    font-size: 20px;
}

.logo-text .brand-sub {
    color: #7CB342;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 2px;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: url('/image/logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-logo-text {
    font-family: 'Georgia', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo-text .footer-brand-main {
    color: white;
    font-size: 28px;
    margin-bottom: -5px;
}

.footer-logo-text .footer-brand-sub {
    color: #7CB342;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    padding: 0 80px;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 0;
}

.hero-left {
    flex: 1;
    color: white;
    max-width: 650px;
    padding: 60px 0;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    /* text-shadow: 3px 3px 6px rgba(0,0,0,0.8); */
    letter-spacing: -1px;
    background: linear-gradient(135deg, #c8e6c9, #7cb342, #4a7c47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.3));
}

.hero-title .title-main,
.hero-title .title-sub {
    display: inline;
}

.hero-subtitle {
    font-size: 22px;
    color: #e8f5e8;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
}

.hero-features {
    list-style: none;
    margin-bottom: 0;
    padding: 30px 0;
    border-left: 4px solid #7CB342;
    padding-left: 30px;
    background: linear-gradient(90deg, rgba(124, 179, 66, 0.1), transparent);
    border-radius: 0 15px 15px 0;
}

.hero-features li {
    margin-bottom: 18px;
    font-size: 17px;
    position: relative;
    padding-left: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.5;
    color: #f0f8f0;
    transition: all 0.3s ease;
}

.hero-features li:hover {
    color: #90EE90;
    transform: translateX(10px);
}

.hero-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7CB342;
    font-weight: bold;
    font-size: 18px;
    background: rgba(124, 179, 66, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7CB342;
}

.hero-right {
    /* background: rgba(255,255,255,0.98); */
    padding: 50px;
    border-radius: 20px;
    width: 450px;
    min-width: 450px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7CB342, #8BC34A, #7CB342);
    animation: shimmer 2s ease-in-out infinite;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #7cb342;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e6e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #689F38, #7CB342);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(-1px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: -200% 0;
    }

    50% {
        background-position: 200% 0;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        padding: 0 40px;
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-features li {
        font-size: 16px;
    }

    .hero-right {
        width: 400px;
        min-width: 400px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .quote-btn {
        width: calc(100%);
    }

    .hero-section {
        padding: 70px 0 60px 0;
        background-attachment: scroll;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "features"
            "form";
        padding: 0 20px;
        gap: 40px;
        align-items: center;
        width: 100%;
        max-width: 1400px;
    }

    .hero-left {
        display: contents;
    }

    .hero-title {
        grid-area: title;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-title .title-main {
        display: block;
        font-size: 40px;
        margin-bottom: 10px;
    }

    .hero-title .title-sub {
        display: block;
        font-size: 28px;
        font-weight: 600;
        line-height: 1.3;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-right {
        grid-area: form;
    }

    .hero-features {
        grid-area: features;
        text-align: left;
        margin-top: 0;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-features {
        padding: 10px 0;
        padding-left: 25px;
        border-left: 3px solid #7CB342;
    }

    .hero-features li {
        font-size: 15px;
        margin-bottom: 15px;
        padding-left: 30px;
    }

    .hero-features li::before {
        width: 15px;
        height: 15px;
        font-size: 14px;
    }

    .hero-right {
        width: 100%;
        min-width: auto;
        max-width: 450px;
        padding: 40px;
        border-radius: 15px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .logo {
        left: 20px;
        font-size: 18px;
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }



    .logo-text .brand-main {
        font-size: 16px;
    }

    .logo-text .brand-sub {
        font-size: 12px;
    }

    .footer-logo {
        gap: 12px;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }



    .footer-logo-text .footer-brand-main {
        font-size: 22px;
    }

    .footer-logo-text .footer-brand-sub {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certifications {
        gap: 40px;
    }

    .cert-logo {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .table-wrapper {
        font-size: 12px;
    }

    .grade-table th,
    .grade-table td {
        padding: 10px 8px;
    }

    .label-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
        gap: 15px;
    }

    .hero-left {
        padding: 20px 0;
    }

    .hero-title {
        line-height: 1.2;
    }

    .hero-title .title-main {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .hero-title .title-sub {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-right {
        padding: 30px;
        width: 100%;
    }

    .form-title {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 16px 20px;
        font-size: 16px;
    }

    .logo {
        gap: 6px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }



    .logo-text .brand-main {
        font-size: 14px;
    }

    .logo-text .brand-sub {
        font-size: 10px;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-logo-icon {
        width: 35px;
        height: 35px;
    }



    .footer-logo-text .footer-brand-main {
        font-size: 20px;
    }

    .footer-logo-text .footer-brand-sub {
        font-size: 12px;
    }

    .label-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .private-label-section {
        padding: 50px 0;
    }

    .private-label-section .section-title {
        font-size: 28px;
    }

    .private-label-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .label-image {
        height: 250px;
    }

    .private-label-cta {
        margin-top: 35px;
        flex-direction: column;
        align-items: center;
    }

    .private-label-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 13px;
    }

    .reviews-grid {
        gap: 15px;
    }

    .review-card {
        width: 250px;
        min-width: 250px;
        padding: 20px;
    }

    .reviews-section p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .reviews-grid {
        gap: 20px;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        padding: 25px;
    }

    .reviews-section p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 200px;
    }

    .faq-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-form {
        position: static;
    }

    .faq-form-card {
        padding: 30px;
    }
}

/* Additional Sections Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #2c5234;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Stats Section */
.stats-section {
    background: #f8fdf8;
    padding: 30px 0;
}

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

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-left: 5px solid #7CB342;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #7CB342;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c5234;
    margin-bottom: 15px;
    line-height: 1.3;
}

.stat-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Certification Section */
.certification-section {
    background: white;
    padding: 30px 0;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.cert-logo:hover {
    transform: scale(1.1);
}

.cert-logo.usda {
    background: url('/image/cert-logo01.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #1B5E20;
    color: transparent;
}

.cert-logo.jas {
    background: url('/image/cert-logo02.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #1B5E20;
    color: transparent;
}

.cert-logo.halal {
    background: url('/image/cert-logo03.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #1B5E20;
    color: transparent;
}

.cert-logo.fssc {
    background: url('/image/cert-logo04.jpg');
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #1B5E20;
    color: transparent;
}

/* Grade Section */
.grade-section {
    background: #f8fdf8;
    padding: 30px 0;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.grade-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
}

.grade-table th {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.grade-table td {
    padding: 15px;
    text-align: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.grade-table tbody tr:hover {
    background: #f9f9f9;
}

.indicator {
    font-size: 13px;
}

.indicator.excellent,
.indicator.good,
.indicator.poor {
    color: #7CB342;
}

/* Color rectangles for color column */
.color-rect {
    display: inline-block;
    width: 40px;
    height: 8px;
}

.color-rect.light-green {
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
}

.color-rect.medium-green {
    background: linear-gradient(135deg, #8BC34A, #9CCC65);
}

.color-rect.dark-green {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.quote-btn-wrapper {
    text-align: center;
}

.quote-btn,
.showcase-btn {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* width: calc(100%); */
}

.quote-btn:hover,
.showcase-btn:hover {
    background: linear-gradient(135deg, #689F38, #7CB342);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Showcase Section */
.showcase-section {
    background: white;
    padding: 30px 0;
}

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

.showcase-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.showcase-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.showcase-image.tea-field {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/image/showcase01.jpg');
    background-size: cover;
}

.showcase-image.factory {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/image/showcase02.jpg');
    background-size: cover;
}

.showcase-image.shipping {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/image/showcase03.jpg');
    background-size: cover;
}

.showcase-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5234;
    margin: 30px 30px 15px 30px;
}

.showcase-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 30px 30px 30px;
}

.showcase-item .showcase-btn {
    margin: 0 30px 30px 30px;
    width: calc(100% - 60px);
}

/* Private Label Section */
.private-label-section {
    background: linear-gradient(135deg, #1B5E20 0%, #2c5234 50%, #1B5E20 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.private-label-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.private-label-section .container {
    position: relative;
    z-index: 1;
}

.private-label-section .section-title {
    color: white;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.private-label-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7CB342, #8BC34A);
    border-radius: 2px;
}

.private-label-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.label-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.label-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(10px);
    position: relative;
}

.label-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(124, 179, 66, 0.5);
}

.label-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7CB342, #8BC34A, #4CAF50);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.label-item:hover::before {
    opacity: 1;
}

.label-image {
    width: 100%;
    height: 250px;
    background: url('/image/package01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.label-item-content {
    padding: 0 25px 25px 25px;
}

.label-item-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.label-item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.private-label-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.private-label-btn {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
}

.private-label-btn:hover {
    background: linear-gradient(135deg, #689F38, #7CB342);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 179, 66, 0.4);
}

.private-label-btn.outline {
    background: transparent;
    border: 2px solid #7CB342;
    box-shadow: none;
}

.private-label-btn.outline:hover {
    background: #7CB342;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
}

.label-item:nth-child(2) .label-image {
    background: url('/image/package02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(3) .label-image {
    background: url('/image/package03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(4) .label-image {
    background: url('/image/package04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(5) .label-image {
    background: url('/image/package05.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(6) .label-image {
    background: url('/image/package06.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(7) .label-image {
    background: url('/image/package07.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(8) .label-image {
    background: url('/image/package08.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(9) .label-image {
    background: url('/image/package09.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(10) .label-image {
    background: url('/image/package10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(11) .label-image {
    background: url('/image/package11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.label-item:nth-child(12) .label-image {
    background: url('/image/package12.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Customer Reviews Section */
.reviews-section {
    background: #f8fdf8;
    padding: 30px 0;
}

.reviews-section .container {
    overflow: visible;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 10px 20px 10px;
    scroll-behavior: smooth;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: #7CB342;
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: #689F38;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
    width: 360px;
    min-width: 360px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url('/image/avatar01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card:nth-child(2) .reviewer-avatar {
    background: url('/image/avatar02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review-card:nth-child(3) .reviewer-avatar {
    background: url('/image/avatar03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review-card:nth-child(4) .reviewer-avatar {
    background: url('/image/avatar04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review-card:nth-child(5) .reviewer-avatar {
    background: url('/image/avatar05.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reviewer-info h4 {
    color: #2c5234;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.reviewer-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* About Section */
.about-section {
    background: white;
    padding: 30px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #2c5234;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image {
    height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/image/about01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-image:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/image/about02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/image/about03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image:nth-child(4) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/image/about04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FAQ Section */
.faq-section {
    background: #f8fdf8;
    padding: 30px 0;
}

.faq-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.faq-container {
    max-width: none;
    margin: 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c5234;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #7CB342;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Form Styles */
.faq-form {
    position: sticky;
    top: 20px;
}

.faq-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5234;
    margin-bottom: 10px;
    text-align: center;
}

.faq-form-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

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

.faq-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c5234;
    margin-bottom: 8px;
}

.faq-form-group input,
.faq-form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e6e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.faq-form-group input:focus,
.faq-form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.faq-form-group input::placeholder,
.faq-form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.faq-form-group textarea {
    height: 100px;
    resize: vertical;
}

.faq-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.faq-submit-btn:hover {
    background: linear-gradient(135deg, #689F38, #7CB342);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.faq-contact-item strong {
    color: #2c5234;
    font-size: 13px;
}

.faq-contact-item span {
    color: #7CB342;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certifications {
        gap: 40px;
    }

    .cert-logo {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .table-wrapper {
        font-size: 12px;
    }

    .grade-table th,
    .grade-table td {
        padding: 10px 8px;
    }

    .label-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .private-label-section {
        padding: 60px 0;
    }

    .private-label-section .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .private-label-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .label-item {
        border-radius: 15px;
    }

    .label-image {
        height: 180px;
    }

    .label-item-content {
        padding: 0 20px 20px 20px;
    }

    .label-item-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .label-item-desc {
        font-size: 13px;
    }

    .private-label-cta {
        margin-top: 40px;
        gap: 15px;
    }

    .private-label-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .label-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .private-label-section {
        padding: 30px 0;
    }

    .private-label-section .section-title {
        font-size: 28px;
    }

    .private-label-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .private-label-cta {
        margin-top: 35px;
        flex-direction: column;
        align-items: center;
    }

    .private-label-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 13px;
    }

    .reviews-grid {
        gap: 15px;
    }

    .review-card {
        width: 250px;
        min-width: 250px;
        padding: 20px;
    }

    .reviews-section p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .reviews-grid {
        gap: 20px;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        padding: 25px;
    }

    .reviews-section p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 200px;
    }

    .faq-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-form {
        position: static;
    }

    .faq-form-card {
        padding: 30px;
    }
}