/* /assets/css/style.css */

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

:root {
    --primary-green: #18442a;
    --accent-yellow: #e0df0b;
    --dark-bg: #18442a;
    --light-text: #ffffff;
    --accent-dark: #222;
    --font-family: 'Poppins', sans-serif;
    --container-width: 1200px;
}

body {
    font-family: var(--font-family);
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    --bg-color: #2c2c2c;
    --dark-text: #f4f4f4;
}

/* --- Header & Navigation --- */
.main-header {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-header .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-yellow);
    text-decoration: none;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--light-text);
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--accent-yellow);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-bg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    border-radius: 5px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    font-weight: 400;
    padding: 12px 15px;
    color: var(--light-text);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(255,102,0,0.2);
    color: var(--primary-orange);
}

/* --- Mobile Navigation --- */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero-slider {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--light-text);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-slider .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slider h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-slider p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- Button Styles --- */
.btn {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* --- Tabs Section --- */
.tabs-section {
    background: var(--dark-bg);
    padding: 2rem 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.tabs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.tab-item:hover {
    background: rgba(224,223,11,0.1);
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--primary-green);
}

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

.content-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--primary-green);
    text-transform: uppercase;
}

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

.large-text {
    font-size: 1.2rem;
}

.bg-light {
    background-color: #f4f4f4;
}

/* --- Grid Layouts --- */
.product-grid,
.project-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

/* --- Cards --- */
.product-item,
.project-item,
.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-item:hover,
.project-item:hover,
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-item img,
.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-item h3,
.project-item h3,
.news-item h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0 1.5rem;
    color: #222;
}

.product-item a,
.project-item a,
.news-item a {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.product-item a:hover,
.project-item a:hover,
.news-item a:hover {
    color: var(--accent-yellow);
}

.news-item p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

/* --- Stats --- */
.stat-item {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-green);
}

.stat-item p {
    color: #666;
    margin-top: 0.5rem;
}

.stat-item p {
    color: #666;
    margin-top: 0.5rem;
}

/* --- Page Header --- */
.page-header {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* --- Forms --- */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-success {
    color: green;
    text-align: center;
    padding: 1rem;
    background: #d4edda;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.form-error {
    color: red;
    text-align: center;
    padding: 1rem;
    background: #f8d7da;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0 1rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Dark Mode Toggle --- */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    transition: all 0.3s;
    color: var(--primary-green);
}

.dark-mode-toggle:hover {
    background: var(--primary-green);
    color: var(--accent-yellow);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 1rem 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li a {
        padding: 12px 20px;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-slider h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tabs-container {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid,
    .project-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.logo {
    text-decoration: none;
    display: flex; /* To align the image vertically */
    align-items: center;
}

.logo img {
    height: 60px; /*  
    width: auto; /* To maintain aspect ratio */
    display: block;
}
 
/* --- Highlights Section Styles --- */
.highlights-section {
    padding: 4rem 0;
}

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

.highlights-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.highlights-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 2rem 0;
    color: #333;
}

/* --- Carousel Wrapper Styles --- */
.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* --- Carousel Navigation Arrows --- */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(24, 68, 42, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-nav:hover {
    background-color: rgba(24, 68, 42, 0.95);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

/* --- Highlight Card Styles --- */
.highlight-card {
    background-color: white;
    flex: 0 0 calc(25% - 15px);
    min-width: 300px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #222;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
    margin: 0 0 1rem 0;
}

.learn-more-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border-radius: 5px;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .highlight-card {
        flex: 0 0 calc(33.33% - 14px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 50px;
    }

    .highlight-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }

    .highlights-subtitle {
        font-size: 1.5rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #prevBtn {
        left: 0;
    }

    #nextBtn {
        right: 0;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 40px;
    }

    .highlight-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 100%;
    }

    .highlights-subtitle {
        font-size: 1.3rem;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}
 
/* Dark Mode Styles */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .main-header {
    background-color: #0d0d0d;
    border-bottom: 1px solid #333;
}

body.dark-mode .container,
body.dark-mode .content-section {
    background-color: #1a1a1a;
}

body.dark-mode .product-item,
body.dark-mode .highlight-card,
body.dark-mode .stat-item {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

body.dark-mode .product-item h3,
body.dark-mode .highlight-card h3 {
    color: #fff;
}

body.dark-mode .product-item p,
body.dark-mode .highlight-card p,
body.dark-mode .stat-item p {
    color: #b0b0b0;
}

body.dark-mode .section-title {
    color: #e0df0b;
}

body.dark-mode .main-footer {
    background-color: #0d0d0d;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-color: #444;
}

body.dark-mode .bg-light {
    background-color: #2a2a2a;
}

body.dark-mode .tabs-section {
    background-color: #0d0d0d;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode-toggle:hover {
    background: var(--primary-green);
    color: var(--accent-yellow);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}

/* Smooth transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* --- About Page Specific Styles --- */
.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
}

.about-page .content-section {
    padding-top: 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.core-values {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1f5a35 100%);
    padding: 4rem 0;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Dark Mode Adjustments for About Page */
body.dark-mode .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .about-intro {
    border-bottom-color: #444;
}

body.dark-mode .about-intro-text p {
    color: #b0b0b0;
}

body.dark-mode .value-item {
    background-color: #2a2a2a;
}

body.dark-mode .value-item p {
    color: #b0b0b0;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-intro-image {
        order: -1; /* Moves image to the top on mobile */
    }

    .about-intro-text h2 {
        font-size: 1.8rem;
    }
}

/* --- Modern About Page Styles --- */

/* Page Header Enhancement */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a5a3b 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* About Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(24, 68, 42, 0.12);
    display: block;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.1);
    border-top-color: var(--accent-yellow);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 1rem auto 2rem;
}

/* Button Enhancement */
.btn {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-cta .btn {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.about-cta .btn:hover {
    background: white;
    color: var(--primary-green);
}

/* Dark Mode Adjustments */
body.dark-mode .page-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a2a1f 100%);
}

body.dark-mode .about-intro-text p {
    color: #b0b0b0;
}

body.dark-mode .stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .value-item {
    background-color: #2a2a2a;
}

body.dark-mode .value-item h3 {
    color: #e0df0b;
}

body.dark-mode .value-item p {
    color: #b0b0b0;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

body.dark-mode .about-cta {
    background: linear-gradient(135deg, #1a2a1f 0%, #0d1a11 100%);
}

body.dark-mode .about-cta h2 {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 0;
    }

    .about-intro-text h2 {
        font-size: 2rem;
    }

    .about-intro-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .value-item h3 {
        font-size: 1.2rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 60px 20px;
    }

    .about-intro-text h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .about-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-cta p {
        font-size: 0.95rem;
    }
}

/* --- Sustainability Page Styles --- */

/* Sustainability Intro Section */
.sustainability-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

/* Sustainability Pillars Section */
.sustainability-pillars {
    padding: 6rem 0;
}

.sustainability-pillars .section-title {
    margin-bottom: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pillar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Impact Section */
.sustainability-impact {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-item {
    text-align: center;
    color: white;
    padding: 2rem;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Commitment Section */
.commitment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 6rem 0;
}

.commitment-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.commitment-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.commitment-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent-yellow);
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.commitment-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.commitment-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.learn-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-link:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

/* Sustainability CTA Section */
.sustainability-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sustainability-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.sustainability-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.sustainability-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Mode Adjustments */
body.dark-mode .sustainability-intro {
    border-bottom-color: #444;
}

body.dark-mode .intro-content h2 {
    color: #e0df0b;
}

body.dark-mode .intro-content p {
    color: #b0b0b0;
}

body.dark-mode .pillar-card {
    background-color: #2a2a2a;
}

body.dark-mode .pillar-card h3 {
    color: #e0df0b;
}

body.dark-mode .pillar-card p {
    color: #b0b0b0;
}

body.dark-mode .commitment-content h2 {
    color: #e0df0b;
}

body.dark-mode .commitment-text p {
    color: #b0b0b0;
}

body.dark-mode .commitment-card {
    background-color: #2a2a2a;
}

body.dark-mode .commitment-card h3 {
    color: #e0df0b;
}

body.dark-mode .commitment-card p {
    color: #b0b0b0;
}

body.dark-mode .learn-link:hover {
    color: var(--accent-yellow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .commitment-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .pillar-icon {
        font-size: 2.8rem;
    }

    .pillar-card h3 {
        font-size: 1.1rem;
    }

    .pillar-card p {
        font-size: 0.9rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-item {
        padding: 1.5rem;
    }

    .impact-item p {
        font-size: 0.9rem;
    }

    .commitment-content h2 {
        font-size: 1.8rem;
    }

    .commitment-text p {
        font-size: 1rem;
    }

    .sustainability-cta h2 {
        font-size: 1.8rem;
    }

    .sustainability-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pillar-icon {
        font-size: 2.5rem;
    }

    .pillar-card h3 {
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .impact-number {
        font-size: 2rem;
    }

    .commitment-section {
        padding: 3rem 0;
    }

    .commitment-content h2 {
        font-size: 1.5rem;
    }

    .commitment-visual {
        gap: 1rem;
    }

    .commitment-card {
        padding: 1.5rem;
    }

    .sustainability-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .sustainability-cta h2 {
        font-size: 1.5rem;
    }

    .sustainability-cta p {
        font-size: 0.95rem;
    }
}

/* --- Mission Page Styles --- */

/* Mission Hero Section */
.mission-hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}

.mission-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.mission-hero-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

/* Mission Pillars Section */
.mission-pillars {
    padding: 6rem 0;
}

.pillars-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.mission-pillar {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.mission-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-pillar:hover::before {
    transform: scaleX(1);
}

.mission-pillar:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.pillar-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    opacity: 0.3;
    line-height: 1;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.mission-pillar h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0;
}

.mission-pillar p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    grid-column: 2;
}

/* Mission Statement Section */
.mission-statement {
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.statement-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.statement-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.statement-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.statement-highlight {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid var(--accent-yellow);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(24, 68, 42, 0.1);
}

.statement-highlight blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-green);
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

/* Core Commitments Section */
.core-commitments {
    padding: 6rem 0;
}

.core-commitments .section-title {
    margin-bottom: 4rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commitment-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.commitment-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.commitment-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
}

.commitment-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.commitment-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Mission Vision Section */
.mission-vision {
    padding: 6rem 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-yellow);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Mission CTA Section */
.mission-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.mission-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.mission-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Dark Mode Adjustments */
body.dark-mode .mission-hero {
    border-bottom-color: #444;
}

body.dark-mode .mission-hero-content h2 {
    color: #e0df0b;
}

body.dark-mode .mission-hero-content p {
    color: #b0b0b0;
}

body.dark-mode .mission-pillar {
    background-color: #2a2a2a;
}

body.dark-mode .mission-pillar h3 {
    color: #e0df0b;
}

body.dark-mode .mission-pillar p {
    color: #b0b0b0;
}

body.dark-mode .mission-statement {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .statement-text h2 {
    color: #e0df0b;
}

body.dark-mode .statement-text p {
    color: #b0b0b0;
}

body.dark-mode .statement-highlight {
    background-color: #3a3a3a;
}

body.dark-mode .statement-highlight blockquote {
    color: #e0df0b;
}

body.dark-mode .commitment-box {
    background-color: #2a2a2a;
}

body.dark-mode .commitment-box h3 {
    color: #e0df0b;
}

body.dark-mode .commitment-box p {
    color: #b0b0b0;
}

body.dark-mode .vision-card {
    background-color: #2a2a2a;
}

body.dark-mode .vision-card h3 {
    color: #e0df0b;
}

body.dark-mode .vision-card p {
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .statement-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mission-hero-content h2 {
        font-size: 2rem;
    }

    .mission-hero-content p {
        font-size: 1rem;
    }

    .mission-pillar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem;
    }

    .pillar-number {
        font-size: 2.5rem;
    }

    .pillar-header {
        margin-bottom: 0.5rem;
    }

    .mission-pillar p {
        grid-column: 1;
    }

    .mission-pillar h3 {
        font-size: 1.2rem;
    }

    .statement-text h2 {
        font-size: 1.8rem;
    }

    .statement-highlight {
        padding: 2rem;
    }

    .statement-highlight blockquote {
        font-size: 1.1rem;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-cta h2 {
        font-size: 1.8rem;
    }

    .mission-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mission-hero-content h2 {
        font-size: 1.5rem;
    }

    .mission-pillar {
        padding: 1.5rem;
    }

    .pillar-icon {
        font-size: 2rem;
    }

    .mission-pillar h3 {
        font-size: 1.1rem;
    }

    .mission-pillar p {
        font-size: 0.9rem;
    }

    .statement-text h2 {
        font-size: 1.5rem;
    }

    .commitment-box {
        padding: 1.5rem;
    }

    .commitment-box h3 {
        font-size: 1rem;
    }

    .commitment-box p {
        font-size: 0.9rem;
    }

    .vision-card {
        padding: 1.5rem;
    }

    .vision-card h3 {
        font-size: 1.2rem;
    }

    .vision-highlights {
        gap: 0.5rem;
    }

    .highlight-tag {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .mission-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .mission-cta h2 {
        font-size: 1.5rem;
    }

    .mission-cta p {
        font-size: 0.95rem;
    }
}

/* --- Vision Page Styles --- */

/* Vision Hero Section */
.vision-hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}

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

.vision-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-hero-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* Vision Pillars Section */
.vision-pillars {
    padding: 6rem 0;
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.vision-pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.vision-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-pillar-card:hover::before {
    transform: scaleX(1);
}

.vision-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(24, 68, 42, 0.15);
}

.pillar-visual {
    text-align: center;
}

.pillar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(24, 68, 42, 0.2);
}

.pillar-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.pillar-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
}

.pillar-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 800;
}

/* Vision Impact Section */
.vision-impact {
    padding: 6rem 0;
}

.vision-impact .section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.impact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(24, 68, 42, 0.15);
}

.impact-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.impact-description {
    padding: 2rem;
}

.impact-description p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.impact-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-point {
    display: flex;
    gap: 1rem;
}

.point-number {
    background: var(--accent-yellow);
    color: var(--primary-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.point-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Vision 2030 Section */
.vision-2030 {
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.vision-2030-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-2030-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-2030-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.vision-2030-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.goal-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.goal-item h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.vision-2030-visual {
    text-align: center;
}

.vision-2030-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(24, 68, 42, 0.1);
    border-top: 5px solid var(--accent-yellow);
}

.vision-2030-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.vision-2030-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-2030-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Future Technologies Section */
.future-tech {
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Vision Statement Banner */
.vision-statement-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    text-align: center;
    margin: 4rem 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.vision-statement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.main-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-subtext {
    font-size: 1rem;
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Vision CTA Section */
.vision-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.vision-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.vision-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Dark Mode Adjustments */
body.dark-mode .vision-hero {
    border-bottom-color: #444;
}

body.dark-mode .vision-hero-content h2 {
    color: #e0df0b;
}

body.dark-mode .vision-hero-content p {
    color: #b0b0b0;
}

body.dark-mode .vision-pillar-card {
    background-color: #2a2a2a;
}

body.dark-mode .vision-pillar-card h3 {
    color: #e0df0b;
}

body.dark-mode .vision-pillar-card p {
    color: #b0b0b0;
}

body.dark-mode .pillar-features li {
    color: #b0b0b0;
}

body.dark-mode .impact-description p,
body.dark-mode .point-text {
    color: #b0b0b0;
}

body.dark-mode .vision-2030 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .vision-2030-content h2 {
    color: #e0df0b;
}

body.dark-mode .vision-2030-content p {
    color: #b0b0b0;
}

body.dark-mode .goal-item {
    background-color: #3a3a3a;
}

body.dark-mode .goal-item h4 {
    color: #e0df0b;
}

body.dark-mode .goal-item p {
    color: #b0b0b0;
}

body.dark-mode .vision-2030-card {
    background-color: #2a2a2a;
}

body.dark-mode .vision-2030-card h3 {
    color: #e0df0b;
}

body.dark-mode .vision-2030-card p {
    color: #b0b0b0;
}

body.dark-mode .tech-card {
    background-color: #2a2a2a;
}

body.dark-mode .tech-card h3 {
    color: #e0df0b;
}

body.dark-mode .tech-card p {
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillars-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-2030-wrapper {
        grid-template-columns: 1fr;
    }

    .vision-2030-goals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vision-hero-content h2 {
        font-size: 2.2rem;
    }

    .vision-hero-content p {
        font-size: 1rem;
    }

    .pillars-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-pillar-card {
        padding: 2rem;
    }

    .pillar-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .main-quote {
        font-size: 1.4rem;
    }

    .vision-cta h2 {
        font-size: 1.8rem;
    }

    .vision-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .vision-2030-content h2 {
        font-size: 1.8rem;
    }

    .vision-statement-banner {
        padding: 3rem 0;
    }

    .vision-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .vision-hero-content h2 {
        font-size: 1.5rem;
    }

    .vision-hero-content p {
        font-size: 0.95rem;
    }

    .pillars-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vision-pillar-card {
        padding: 1.5rem;
    }

    .pillar-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .pillar-content h3 {
        font-size: 1.2rem;
    }

    .pillar-content p {
        font-size: 0.9rem;
    }

    .pillar-features li {
        font-size: 0.85rem;
    }

    .impact-card {
        border-radius: 8px;
    }

    .impact-header {
        padding: 1.5rem 1rem;
    }

    .impact-icon {
        font-size: 2.2rem;
    }

    .impact-header h3 {
        font-size: 1.1rem;
    }

    .impact-description {
        padding: 1.5rem;
    }

    .impact-description p {
        font-size: 0.9rem;
    }

    .impact-point {
        gap: 0.8rem;
    }

    .point-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .point-text {
        font-size: 0.85rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .tech-icon {
        font-size: 2.5rem;
    }

    .tech-card h3 {
        font-size: 1.1rem;
    }

    .tech-card p {
        font-size: 0.9rem;
    }

    .vision-2030-content h2 {
        font-size: 1.5rem;
    }

    .vision-2030-content p {
        font-size: 1rem;
    }

    .vision-2030-goals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .goal-item {
        padding: 1.2rem;
    }

    .goal-item h4 {
        font-size: 1rem;
    }

    .goal-item p {
        font-size: 0.85rem;
    }

    .vision-2030-card {
        padding: 1.5rem;
    }

    .vision-2030-icon {
        font-size: 2.8rem;
    }

    .vision-2030-card h3 {
        font-size: 1.2rem;
    }

    .main-quote {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .banner-subtext {
        font-size: 0.9rem;
    }

    .vision-statement-banner {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .vision-cta h2 {
        font-size: 1.5rem;
    }

    .vision-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
/* --- Factory Page Styles --- */

/* Factory Introduction Section */
.factory-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}

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

.intro-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Specialization Section */
.specialization-section {
    padding: 6rem 0;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.spec-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(24, 68, 42, 0.15);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spec-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.spec-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spec-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Facility Highlights Section */
.facility-highlights {
    padding: 6rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Manufacturing Process Section */
.manufacturing-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    border-radius: 12px;
    margin: 2rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.process-step {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(24, 68, 42, 0.15);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 0.8rem;
    display: block;
}

.step-header h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: bold;
}

/* Quality Standards Section */
.quality-standards {
    padding: 6rem 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.standard-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.standard-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(24, 68, 42, 0.15);
}

.standard-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.standard-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.standard-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Vision 2030 Factory Section */
.vision-2030-factory {
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.vision-2030-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vision-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.goal-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.goal-item h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.vision-highlight {
    text-align: center;
}

.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(24, 68, 42, 0.1);
    border-top: 5px solid var(--accent-yellow);
}

.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.vision-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Capacity Section */
.capacity-section {
    padding: 6rem 0;
}

.capacity-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.capacity-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.capacity-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.capacity-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.capacity-stat h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.capacity-stat p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.capacity-card-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 3rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(24, 68, 42, 0.2);
}

.capacity-card-highlight h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

.capacity-card-highlight p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    color: white;
}

.facility-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.detail-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Factory CTA Section */
.factory-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.factory-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.factory-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.factory-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Dark Mode Adjustments */
body.dark-mode .factory-intro {
    border-bottom-color: #444;
}

body.dark-mode .intro-content h2 {
    color: #e0df0b;
}

body.dark-mode .intro-content p {
    color: #b0b0b0;
}

body.dark-mode .spec-card {
    background-color: #2a2a2a;
}

body.dark-mode .spec-card h3 {
    color: #e0df0b;
}

body.dark-mode .spec-card p {
    color: #b0b0b0;
}

body.dark-mode .highlight-card {
    background-color: #2a2a2a;
}

body.dark-mode .highlight-card h3 {
    color: #e0df0b;
}

body.dark-mode .highlight-card p {
    color: #b0b0b0;
}

body.dark-mode .manufacturing-process {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .process-step {
    background-color: #3a3a3a;
}

body.dark-mode .process-step h3 {
    color: #e0df0b;
}

body.dark-mode .process-step p {
    color: #b0b0b0;
}

body.dark-mode .standard-box {
    background-color: #2a2a2a;
}

body.dark-mode .standard-box h3 {
    color: #e0df0b;
}

body.dark-mode .standard-box p {
    color: #b0b0b0;
}

body.dark-mode .vision-2030-factory {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .vision-content h2 {
    color: #e0df0b;
}

body.dark-mode .vision-content p {
    color: #b0b0b0;
}

body.dark-mode .goal-item {
    background-color: #3a3a3a;
}

body.dark-mode .goal-item h4 {
    color: #e0df0b;
}

body.dark-mode .goal-item p {
    color: #b0b0b0;
}

body.dark-mode .vision-card {
    background-color: #2a2a2a;
}

body.dark-mode .vision-card h3 {
    color: #e0df0b;
}

body.dark-mode .vision-card p {
    color: #b0b0b0;
}

body.dark-mode .capacity-content p {
    color: #b0b0b0;
}

body.dark-mode .capacity-stat {
    background-color: #3a3a3a;
}

body.dark-mode .capacity-stat h4 {
    color: #e0df0b;
}

body.dark-mode .capacity-stat p {
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vision-2030-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-goals {
        grid-template-columns: 1fr;
    }

    .capacity-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .capacity-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-card {
        padding: 2rem;
    }

    .spec-icon {
        font-size: 2.5rem;
    }

    .spec-card h3 {
        font-size: 1.1rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-icon {
        font-size: 2.5rem;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-arrow {
        display: none;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .standards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-content h2 {
        font-size: 1.8rem;
    }

    .capacity-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .factory-cta h2 {
        font-size: 1.8rem;
    }

    .factory-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 1.5rem;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-card {
        padding: 1.5rem 1.2rem;
    }

    .spec-icon {
        font-size: 2rem;
    }

    .spec-card h3 {
        font-size: 1rem;
    }

    .spec-card p {
        font-size: 0.9rem;
    }

    .benefit-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-card h3 {
        font-size: 1rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-step {
        padding: 1.2rem 1rem;
    }

    .step-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .step-header h3 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .standard-box {
        padding: 1.5rem 1.2rem;
    }

    .standard-icon {
        font-size: 2.2rem;
    }

    .standard-box h3 {
        font-size: 1rem;
    }

    .standard-box p {
        font-size: 0.9rem;
    }

    .vision-content h2 {
        font-size: 1.5rem;
    }

    .vision-content p {
        font-size: 1rem;
    }

    .vision-goals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .goal-item {
        padding: 1.2rem;
    }

    .goal-item h4 {
        font-size: 1rem;
    }

    .goal-item p {
        font-size: 0.85rem;
    }

    .vision-card {
        padding: 1.5rem;
    }

    .vision-icon {
        font-size: 2.8rem;
    }

    .vision-card h3 {
        font-size: 1.2rem;
    }

    .vision-badges {
        gap: 0.5rem;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .capacity-content p {
        font-size: 1rem;
    }

    .capacity-stat {
        padding: 1.2rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .capacity-stat h4 {
        font-size: 1rem;
    }

    .capacity-stat p {
        font-size: 0.85rem;
    }

    .capacity-card-highlight {
        padding: 2rem;
    }

    .capacity-card-highlight h3 {
        font-size: 1.3rem;
    }

    .capacity-card-highlight p {
        font-size: 0.95rem;
    }

    .facility-details {
        gap: 0.5rem;
    }

    .detail-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .factory-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .factory-cta h2 {
        font-size: 1.5rem;
    }

    .factory-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* --- Services Page Styles --- */

/* Services Introduction Section */
.services-intro {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}

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

.intro-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

/* Section Title & Subtitle */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid Section */
.services-grid-section {
    padding: 6rem 0;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(24, 68, 42, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 800;
}

/* Service Benefits Section */
.service-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    border-radius: 12px;
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(24, 68, 42, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Service Process Section */
.service-process {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.process-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(24, 68, 42, 0.15);
}

.step-num {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-box h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
    border-radius: 12px;
    margin: 4rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(24, 68, 42, 0.1);
    border-top-color: var(--accent-yellow);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Service Packages Section */
.service-packages {
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(24, 68, 42, 0.15);
}

.package-card.featured {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
    padding: 2rem 2rem 0;
}

.package-desc {
    font-size: 0.95rem;
    color: #666;
    padding: 0.8rem 2rem;
    font-style: italic;
}

.package-features {
    list-style: none;
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.7rem 0;
    color: #555;
    font-size: 0.9rem;
}

.package-features li::before {
    content: '✓ ';
    color: var(--accent-yellow);
    font-weight: 800;
    margin-right: 0.5rem;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    margin: 0 2rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.package-btn:hover {
    background: linear-gradient(135deg, #2a5a3b 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 68, 42, 0.2);
}

.package-card.featured .package-btn {
    background: var(--accent-yellow);
    color: var(--primary-green);
}

.package-card.featured .package-btn:hover {
    background: white;
    color: var(--primary-green);
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a3b 100%);
    padding: 5rem 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 223, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-green);
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Dark Mode Adjustments */
body.dark-mode .services-intro {
    border-bottom-color: #444;
}

body.dark-mode .intro-content h2 {
    color: #e0df0b;
}

body.dark-mode .intro-content p {
    color: #b0b0b0;
}

body.dark-mode .service-card {
    background-color: #2a2a2a;
}

body.dark-mode .service-content p {
    color: #b0b0b0;
}

body.dark-mode .service-features li {
    color: #b0b0b0;
}

body.dark-mode .service-benefits {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .benefit-card {
    background-color: #3a3a3a;
}

body.dark-mode .benefit-card h3 {
    color: #e0df0b;
}

body.dark-mode .benefit-card p {
    color: #b0b0b0;
}

body.dark-mode .process-box {
    background-color: #2a2a2a;
}

body.dark-mode .process-box h3 {
    color: #e0df0b;
}

body.dark-mode .process-box p {
    color: #b0b0b0;
}

body.dark-mode .industries-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .industry-card {
    background-color: #2a2a2a;
}

body.dark-mode .industry-card h3 {
    color: #e0df0b;
}

body.dark-mode .industry-card p {
    color: #b0b0b0;
}

body.dark-mode .package-card {
    background-color: #2a2a2a;
}

body.dark-mode .package-card h3 {
    color: #e0df0b;
}

body.dark-mode .package-desc {
    color: #b0b0b0;
}

body.dark-mode .package-features li {
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-arrow {
        display: none;
    }

    .process-box {
        padding: 2rem;
    }

    .process-box h3 {
        font-size: 1.1rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-icon {
        font-size: 2.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card h3 {
        font-size: 1.3rem;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }

    .services-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 1.5rem;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-header h3 {
        font-size: 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1.2rem;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .process-box {
        padding: 1.5rem 1.2rem;
    }

    .step-num {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .process-box h3 {
        font-size: 1rem;
    }

    .process-box p {
        font-size: 0.85rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-card {
        padding: 1.5rem 1.2rem;
    }

    .industry-icon {
        font-size: 2rem;
    }

    .industry-card h3 {
        font-size: 1.1rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card h3 {
        font-size: 1.2rem;
        padding: 1.5rem 1.5rem 0;
    }

    .package-desc {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .package-features {
        padding: 1rem 1.5rem;
    }

    .package-features li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .package-btn {
        margin: 0 1.5rem 1.5rem;
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .services-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .services-cta h2 {
        font-size: 1.5rem;
    }

    .services-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}