/* ============================================
   Klean&Kare Website - Main Stylesheet
   ============================================ */

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

:root {
    --primary-green: #2d7a3d;
    --light-green: #e8f5e9;
    --orange: #ff6b35;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --container-width: 1200px;
    --header-height: 80px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', 'Kanit', 'Prompt', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header Styles
   ============================================ */

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hide close button in desktop view */
.nav-menu li.nav-menu-close {
    display: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu li.active a {
    color: var(--orange);
    font-weight: 600;
    position: relative;
}

.nav-menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #5CB345;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #008843;
}

.social-icons a i {
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   Feature Section
   ============================================ */

.feature-section {
    background-color: #5CB345;
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background-color: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
    position: relative;
}

.feature-item:nth-child(3n) {
    border-right: none;
}

.feature-item:nth-child(4),
.feature-item:nth-child(5),
.feature-item:nth-child(6) {
    border-bottom: none;
}

.feature-item:hover {
    background-color: #F68B1F;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.95;
}

/* ============================================
   Articles Section
   ============================================ */

.articles-section {
    padding: 80px 0;
    background-color: var(--white);
}

.articles-page-section {
    padding: 60px 0 80px;
    background-color: var(--white);
}

.articles-page-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.articles-page-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-line {
    width: 100px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 20px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.article-card h4 {
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 80px;
    display: flex;
    align-items: center;
}

/* ============================================
   News Section
   ============================================ */

.news-section {
    padding: 80px 0;
    background-color: var(--white);
}

.news-page-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.news-page-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-page-section .section-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.news-card h4 {
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 80px;
    display: flex;
    align-items: center;
}

/* ============================================
   Footer Styles
   ============================================ */

.main-footer {
    background-color: transparent;
    background-image: linear-gradient(180deg, #5CB345 0%, #008843 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 12px;
}

.footer-links-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.footer-links-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
}

.social-links a i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   Utility Classes
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Breadcrumb Navigation
   ============================================ */

.breadcrumb-nav {
    background-color: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb .active {
    color: var(--text-light);
}

/* ============================================
   Products Hero Section
   ============================================ */

.products-hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
}

.products-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   Products Content Section
   ============================================ */

.products-content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.products-content-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-content-section .section-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badge {
    margin-bottom: 20px;
}

.badge-brand {
    display: inline-block;
    background-color: #f58b1f;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

.product-image {
    margin: 20px 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    text-align: left;
}

.product-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.product-title {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-order:hover {
    background-color: #e55a2a;
    transform: translateY(-2px);
}

.btn-order i {
    font-size: 1rem;
}

/* ============================================
   Contact Page Section
   ============================================ */

.contact-page-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.contact-page-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #5CB345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #5CB345;
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #5CB345;
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #008843;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 1rem;
}

/* ============================================
   Distribution Page Section
   ============================================ */

.distribution-page-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.distribution-page-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.distribution-content {
    max-width: 1200px;
    margin: 0 auto;
}

.distribution-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.distribution-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distribution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.distribution-icon {
    width: 80px;
    height: 80px;
    background-color: #5CB345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.distribution-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.distribution-card > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.distribution-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.distribution-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.distribution-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5CB345;
}

.distribution-note {
    background-color: #f0f8f0;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid #5CB345;
    margin-top: 40px;
}

.distribution-note p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.distribution-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.distribution-note a:hover {
    color: #5CB345;
    text-decoration: underline;
}

/* ============================================
   About Page Section
   ============================================ */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #5CB345 0%, #008843 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.95;
}

/* About History Section */
.about-history-section {
    padding: 80px 0;
    background-color: var(--white);
}

.history-content {
    max-width: 1000px;
    margin: 0 auto;
}

.history-text .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #5CB345 0%, #008843 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
}

.timeline-year {
    min-width: 120px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5CB345;
    padding: 10px 20px;
    background-color: #f0f8f0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 20px 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* About Expertise Section */
.about-expertise-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-main {
    text-align: center;
    margin-bottom: 50px;
}

.expertise-main .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
}

.expertise-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.standard-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.standard-image-wrapper {
    width: 100%;
    max-width: 250px;
    height: 200px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.standard-cert-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.standard-icon-fallback {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5CB345 0%, #008843 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.standard-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.standard-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Quality Promise Section */
.quality-promise-section {
    padding: 80px 0;
    background-color: var(--white);
}

.quality-content {
    max-width: 1200px;
    margin: 0 auto;
}

.quality-header {
    text-align: center;
    margin-bottom: 60px;
}

.quality-title {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.quality-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #5CB345 0%, #008843 100%);
    margin: 0 auto;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quality-item {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background-color: #5CB345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.quality-item h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.quality-item p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Export Section */
.export-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.export-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.export-content .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.export-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.country-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.country-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f0f8f0;
}

.country-flag {
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
}

.country-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.country-item:hover .country-name {
    color: var(--primary-green);
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.company-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info-content .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.company-detail-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5CB345 0%, #008843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.company-detail-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.company-detail-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Policies Section */
.policies-section {
    padding: 80px 0 100px;
    background-color: #f9f9f9;
}

.policies-content {
    max-width: 1200px;
    margin: 0 auto;
}

.policies-content .section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.policy-icon {
    width: 80px;
    height: 80px;
    background-color: #5CB345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.policy-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-ref {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

/* ============================================
   Product Detail Page Section
   ============================================ */

.product-detail-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

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

.product-detail-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-detail-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.product-detail-left {
    text-align: center;
}

.product-brand {
    margin-bottom: 30px;
}

.product-brand .product-name {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 15px;
    font-weight: 600;
}

.product-image-main {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-main img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.product-caption {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
    margin-top: 20px;
}

.product-detail-right {
    display: flex;
    flex-direction: column;
}

.product-info-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.product-info-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-info-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.product-uses li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.product-uses li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.spec-item {
    display: flex;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.spec-item strong {
    color: var(--primary-green);
    min-width: 180px;
}

/* Where to Buy Section */
.where-to-buy-section {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.where-to-buy-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.retailers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.retailer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.retailer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.retailer-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.retailer-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Related Articles Section */
.related-articles-section {
    margin-top: 60px;
}

.related-articles-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.related-articles-title .title-underline {
    width: 150px;
    height: 4px;
    background-color: var(--orange);
    margin: 15px auto 0;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   Article Detail Page Section
   ============================================ */

.article-detail-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.article-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-category {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-date i {
    color: var(--primary-green);
}

.article-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.article-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Privacy Policy Page Section
   ============================================ */

.privacy-policy-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-updated {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.policy-body {
    line-height: 1.9;
    color: var(--text-dark);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-section li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-green);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ============================================
   News Detail Page Section
   ============================================ */

.news-detail-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-category {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.news-date i {
    color: var(--primary-green);
}

.news-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.news-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.news-body p {
    margin-bottom: 20px;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.related-news-section {
    margin-top: 60px;
}

.related-news-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.related-news-title .title-underline {
    width: 150px;
    height: 4px;
    background-color: var(--orange);
    margin: 15px auto 0;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   FAQ Page Section
   ============================================ */

.faq-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-list {
    margin-bottom: 50px;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-item.active .faq-question {
    background-color: var(--primary-green);
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-icon i {
    color: var(--primary-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    color: var(--white);
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: justify;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-answer li strong {
    color: var(--primary-green);
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.faq-contact {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.faq-contact p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-contact a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* ============================================
   Event Popup Styles
   ============================================ */

.event-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.event-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.event-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    z-index: 10000;
    animation: scaleIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-popup-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.event-popup-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.event-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10001;
}

.event-popup-close:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}

.event-popup-close i {
    color: var(--text-dark);
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .main-header,
    .main-footer,
    .social-icons,
    .mobile-menu-toggle,
    .breadcrumb-nav {
        display: none;
    }
}

