/* About Section Styles - Content Only */
.about-section {
    width: 100%;
    overflow: hidden;
}

/* Hero Section */
.hero {
    background-image: url("images/slides/about-page-background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(45, 80, 22, 0.3);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e8f5e8;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 5px;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.stat-item p {
    font-size: 1rem;
    color: #e8f5e8;
    margin: 0;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Intro Section */
.intro {
    padding: 80px 0 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 1.5rem;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #2d5016;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background-color: #f0f7ec;
}

.generations-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.generation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.generation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.generation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a9c2d, #2d5016);
}

.gen-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f5e8;
    text-shadow: 2px 2px 0 #2d5016;
    margin-bottom: 10px;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
}

.gen-icon {
    font-size: 2.5rem;
    color: #4a9c2d;
    margin-bottom: 15px;
}

.gen-title {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.gen-desc {
    color: #000;
    margin-bottom: 20px;
    min-height: 80px;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.gen-era {
    display: inline-block;
    background: #e8f5e8;
    color: #2d5016;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Growth Graph */
.growth-graph {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.growth-graph h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #2d5016;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.graph-text {
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.graph-visual {
    position: relative;
    height: 200px;
    margin-top: 40px;
}

.graph-line {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, #4a9c2d, #2d5016);
    border-radius: 2px;
}

.graph-point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 4px solid #4a9c2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2d5016;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.graph-point:hover {
    transform: translateY(-50%) scale(1.1);
}

.graph-point::after {
    content: attr(data-year);
    position: absolute;
    bottom: -30px;
    font-size: 0.9rem;
    color: #666;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.point-1 {
    left: 10%;
}

.point-2 {
    left: 45%;
}

.point-3 {
    left: 80%;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 80px 0;
    background: white;
}

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

.infra-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    /* border-left: 5px solid #4a9c2d; */
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.infra-icon {
    font-size: 3rem;
    color: #4a9c2d;
    margin-bottom: 20px;
}

.infra-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.infra-card p {
    color: #000;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Water Section */
.water-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
}

.water-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.water-text {
    flex: 1;
    min-width: 300px;
}

.water-list {
    list-style: none;
    margin: 25px 0;
}

.water-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.water-list i {
    color: #4a9c2d;
}

.water-quote {
    font-style: italic;
    color: #2d5016;
    font-size: 1.2rem;
    /* border-left: 4px solid #4a9c2d; */
    padding-left: 15px;
    margin-top: 30px;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.water-visual {
    flex: 1;
    min-width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-icon {
    font-size: 10rem;
    color: rgba(74, 156, 45, 0.3);
    z-index: 1;
}

.water-drop {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(74, 156, 45, 0.7);
    border-radius: 50%;
    animation: drop-fall 3s infinite linear;
}

#waterDrop1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

#waterDrop2 {
    top: 20%;
    right: 30%;
    animation-delay: 1s;
}

#waterDrop3 {
    bottom: 15%;
    left: 35%;
    animation-delay: 2s;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border-top: 5px solid #4a9c2d;
}

.team-card:hover {
    transform: translateY(-10px);
    background: #f0f7ec;
}

.team-icon {
    font-size: 2.5rem;
    color: #4a9c2d;
    margin-bottom: 20px;
}

.team-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.team-card p {
    color: #000;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.team-quote {
    background: #e8f5e8;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    font-style: italic;
    color: #2d5016;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.team-quote i:first-child {
    margin-right: 10px;
    color: #4a9c2d;
}

.team-quote i:last-child {
    margin-left: 10px;
    color: #4a9c2d;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f0f7ec;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #4a9c2d;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.value-item p {
    color: #000;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: white;
}

.vm-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.vision,
.mission {
    flex: 1;
    min-width: 300px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vm-header h2 {
    color: #2d5016;
    margin: 0;
    font-size: 2rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.vm-content {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.mission-list i {
    color: #4a9c2d;
    margin-top: 5px;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5016, #4a9c2d);
    color: white;
}

.commitment-section .section-header h2,
.commitment-section .section-subtitle {
    color: white;
}

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

.commitment-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #e8f5e8;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.commitment-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #e8f5e8;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

/* Long-term Vision Section */
.longterm-vision-section {
    padding: 80px 0;
    background: #f0f7ec;
}

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

.vision-quote {
    font-size: 1.3rem;
    color: #2d5016;
    max-width: 800px;
    margin: 0 auto 50px;
    font-style: italic;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.metric {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.metric:hover {
    transform: translateY(-10px);
}

.metric-icon {
    font-size: 2.5rem;
    color: #4a9c2d;
    margin-bottom: 20px;
}

.metric h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5rem;
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.metric p {
    color: #000;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.final-message {
    background: #2d5016;
    color: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.final-message i:first-child {
    margin-right: 15px;
    color: #a5d6a7;
}

.final-message i:last-child {
    margin-left: 15px;
    color: #a5d6a7;
}

/* Container for centering content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes drop-fall {
    0% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(300px) scale(1);
        opacity: 0;
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles for Section Content */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .water-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 70vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 100px;
        padding: 12px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .hero {
        height: 60vh;
    }

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

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

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        min-width: 80px;
        padding: 10px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

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

    .intro {
        padding: 50px 0 30px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .generation-card {
        width: 100%;
        max-width: 300px;
    }

    .graph-point {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .graph-point::after {
        bottom: -25px;
        font-size: 0.8rem;
    }

    .commitment-stats {
        gap: 20px;
    }

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

    .final-message {
        padding: 25px;
        font-size: 1.1rem;
    }
}


/* Fruit Plants Exporters Section */
.fruit-plants-exporters {
    padding: 1rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.exporters-header {
    margin-bottom: 1rem;
    text-align: center;
}

.exporters-header h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.exporters-header .tagline {
    font-size: 1.3rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
    padding-bottom: 5px;
    /* border-bottom: 2px solid #e8f5e0; */
}

.description {
    /* max-width: 900px; */
    max-width: 1260px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
}

.description p {
    margin-bottom: 1.2rem;
    color: #000;
    font-size: 1.05rem;
    font-family: 'Ubuntu', sans-serif;
}

/* Content Wrapper - Sidebar + Cards */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sidebar Styles */
.sidebar {
    flex: 0 0 260px;
    background-color: #f9fff5;
    border-radius: 10px;
    padding: 0.3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f0d9;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 0.5px solid #123316;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 0.3rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.9rem 0.5rem;
    /* color: #3a5a1a; */
    color: #123316;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    /* border-left: 4px solid transparent; */
    border: 0.5px solid #123316;
    line-height: 1.5rem;
}

.sidebar-nav a:hover {
    background-color: #006B3E;
    color: #fff;
    /* border-left: 4px solid #006B3E; */
    /* border: 2px solid #123316; */
}

.sidebar-nav li.active a {
    background-color: #006B3E;
    color: #fff;
    /* border-left: 4px solid #006B3E; */
    font-weight: 600;
}


/* ========================================
   CUSTOM DROPDOWN - BOOTSTRAP OVERRIDE
   ======================================== */

/* Reset and override Bootstrap styles */
.custom-dropdown {
    position: relative !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dropdown Toggle Link */
.custom-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    text-decoration: none !important;
    padding: 15px 20px !important;
    background-color: #006B3E !important;
    color: white !important;
    border: 1px solid #006B3E !important;
    border-bottom: 1px solid #006B3E !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease !important;
}

.custom-dropdown-toggle:hover {
    background-color: #006B3E !important;
    color: white !important;
    text-decoration: none !important;
}

.custom-dropdown-toggle:focus {
    outline: none !important;
    text-decoration: none !important;
}

/* Dropdown Icon */
.custom-dropdown-icon {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    margin-left: 8px !important;
    line-height: 1 !important;
}

/* Rotate icon when dropdown is open */
.custom-dropdown.is-open .custom-dropdown-icon {
    transform: rotate(180deg) !important;
}

/* Dropdown Menu - Override Bootstrap completely */
.custom-dropdown-menu {
    display: block !important;
    position: static !important;
    float: none !important;
    background-color: #ffffff !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    /* border-left: 1px solid #ddd !important; */
    border-right: 1px solid #ddd !important;
    box-shadow: none !important;
    min-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-in-out !important;
    z-index: 1 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Show dropdown when open */
.custom-dropdown.is-open .custom-dropdown-menu {
    max-height: 800px !important;
    border-bottom: 1px solid #006B3E !important;
    margin-bottom: 0.3rem;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Dropdown Menu Items */
.custom-dropdown-menu li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #006B3E !important;
    list-style: none !important;
    float: none !important;
    position: static !important;

}

.custom-dropdown-menu li:last-child {
    border-bottom: none !important;
}

.custom-dropdown-menu li a {
    display: block !important;
    padding: 12px 20px !important;
    padding-left: 40px !important;
    color: #333333 !important;
    text-decoration: none !important;
    /* background-color: #ffffff !important; */
    background-color: #f9fff5 !important;
    transition: all 0.2s ease !important;
    font-size: 15px !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: static !important;
    float: none !important;
}

.custom-dropdown-menu li a:hover {
    background-color: #006B3E !important;
    color: #fff !important;
    text-decoration: none !important;
    padding-left: 45px !important;
}

.custom-dropdown-menu li a:focus {
    outline: none !important;
    background-color: #006B3E !important;
    text-decoration: none !important;
}

/* Remove any Bootstrap dropdown effects */
.custom-dropdown .custom-dropdown-menu::before,
.custom-dropdown .custom-dropdown-menu::after {
    display: none !important;
}

/* Ensure no conflicts with Bootstrap's .dropdown class */
li.custom-dropdown:not(.dropdown) {
    position: relative !important;
}

/* Active state for sidebar items */
.sidebar-nav li.active>a {
    background-color: #006B3E !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Active state for dropdown items */
.custom-dropdown-menu li.active>a {
    background-color: #006B3E !important;
    color: white !important;
    font-weight: 600 !important;
    /* border-left: 4px solid #1f5a38 !important; */
    padding-left: 36px !important;
}

/* Active parent dropdown when child is active */
.custom-dropdown.active>.custom-dropdown-toggle {
    background-color: #006B3E !important;
    font-weight: 600 !important;
}

/* Hover effect - don't override active state */
.sidebar-nav li:not(.active)>a:hover {
    background-color: #006B3E !important;
}

.custom-dropdown-menu li:not(.active)>a:hover {
    background-color: #006B3E !important;
    color: #fff !important;
}


/* Main Content Area */
.fruit-plants-content {
    flex: 1;
    min-width: 300px;
}

.fruit-plants-content h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e8f5e0;
}

/* Fruit Cards Container */
.fruit-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Individual Fruit Card */
.fruit-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e0f0d9;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 0.5px solid #4a7c2a;
}

/* .fruit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: #4a7c2a;
} */

.card-image {
    position: relative;
    /* height: 280px; */
    overflow: hidden;
    padding: 10px;

}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: 0.5px solid #2d5016;
}

/* .fruit-card:hover .card-image img {
    transform: scale(1.05);
} */

/* View More Button */
.view-more-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #006B3E;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid #123316;
}

.view-more-btn:hover {
    background-color: #123316;
    transform: translate(-50%, -50%) scale(1);
    color: white;
    border: 2px solid #fff;
}

.fruit-card:hover .view-more-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Plant Name */
.plant-name {
    padding: 1.2rem 1rem;
    margin: 0;
    font-size: 1.3rem;
    color: #000;
    text-align: center;
    background-color: #f9fff5;
    border-top: 1px solid #e0f0d9;
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fruit-card:hover .plant-name {
    background-color: #e8f5e0;
    color: #1e3a0f;
}

/* Scroll-triggered animation class */
.card-visible .view-more-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Design */

/* For large desktops (≥1400px) */
@media (min-width: 1400px) {
    .fruit-plants-exporters {
        padding: 3rem 2rem;
    }

    .fruit-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .card-image {
        height: 320px;
    }
}

/* For desktops (≥1200px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .fruit-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .card-image {
        height: 300px;
    }
}

/* For tablets and small desktops (≥992px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .fruit-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }

    .card-image {
        height: 260px;
    }

    .exporters-header h1 {
        font-size: 2.2rem;
    }
}

/* For tablets (≥768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        flex: 0 0 auto;
        width: 100%;
    }

    .sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sidebar-nav li {
        margin: 0 0.5rem 0.5rem 0;
    }

    .sidebar-nav a {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.8rem 1.2rem;
        border-radius: 6px;
    }

    .sidebar-nav a:hover,
    .sidebar-nav li.active a {
        border-left: none;
        border-bottom: 3px solid #4a7c2a;
    }

    .fruit-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    /* .card-image {
        height: 280px;
    } */
}

/* For larger phones (≥576px) */
@media (min-width: 576px) and (max-width: 767px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        flex: 0 0 auto;
        width: 100%;
    }

    .sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sidebar-nav li {
        margin: 0 0.5rem 0.5rem 0;
    }

    .sidebar-nav a {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .sidebar-nav a:hover,
    .sidebar-nav li.active a {
        border-left: none;
        border-bottom: 3px solid #4a7c2a;
    }

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

    .card-image {
        height: 240px;
    }

    .exporters-header h1 {
        font-size: 2rem;
    }

    .exporters-header .tagline {
        font-size: 1.2rem;
    }
}

/* For phones (<576px) */
@media (max-width: 575px) {
    .fruit-plants-exporters {
        padding: 1.5rem 0.8rem;
    }

    .exporters-header h1 {
        font-size: 1.8rem;
    }

    .exporters-header .tagline {
        font-size: 1.1rem;
    }

    .description p {
        font-size: 1rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sidebar {
        position: static;
        flex: 0 0 auto;
        width: 100%;
        padding: 1rem 0;
    }

    .sidebar-nav ul {
        display: flex;
        flex-direction: column;
    }

    .sidebar-nav a {
        padding: 0.8rem 1.2rem;
        /* border-left: 4px solid transparent; */
    }

    .sidebar-nav a:hover,
    .sidebar-nav li.active a {
        border-left: 0px;
    }

    .fruit-plants-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .fruit-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-image {
        height: 360px;
        width: 100%;
    }

    .plant-name {
        font-size: 1.2rem;
        padding: 1rem 0.8rem;
    }

    /* Always show button on mobile for better UX */
    .view-more-btn {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(0.9);
        background-color: #006B3E;
    }

    .view-more-btn:hover {
        transform: translate(-50%, -50%) scale(1);
    }
}


/* Mango Plants Page Styles - Optimized Spacing */
.mango-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 2rem 0;
    transition: background-color 0.3s ease;
}

.section-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #4a7c2a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Compact Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    /* border-left: 3px solid #4a7c2a; */
    border-radius: 0 6px 6px 0;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

/* Compact Points List */
.compact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.compact-points.vertical {
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: white;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    font-size: 0.95rem;
}

.point-item.expanded {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e0f0d9;
    border-radius: 8px;
}

.point-icon {
    color: #4a7c2a;
    font-weight: bold;
    flex-shrink: 0;
}

.point-item.expanded .point-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.point-content {
    flex: 1;
}

.point-content h3 {
    color: #2d5016;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.point-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.point-text {
    color: #000;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.compact-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.beliefs {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
}

.belief {
    font-size: 1rem;
    color: #4a7c2a;
    font-style: italic;
    margin: 0;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title,
.audience-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.8rem 0;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.5rem 0;
    }

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-points {
        flex-direction: column;
        gap: 0.6rem;
    }

    .point-item {
        padding: 0.7rem;
    }

    .point-item.expanded {
        padding: 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1.2rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Coconut Plants Page Styles - Optimized Spacing */
.coconut-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #1e4a27;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #1e4a27;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #2e6b3a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-content strong {
    color: #1e4a27;
    font-weight: 600;
}

/* Compact Points */
.compact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.compact-points.vertical {
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: white;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
}

.point-item.expanded {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e0f0d9;
    border-radius: 8px;
}

.point-icon {
    color: #2e6b3a;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.point-item.expanded .point-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.point-content h4 {
    color: #1e4a27;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.point-content h3 {
    color: #1e4a27;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.point-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.point-text {
    color: #000;
    font-weight: 500;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #2e6b3a;
}

.compact-icon {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
}

.compact-card h3,
.compact-card h4 {
    color: #1e4a27;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    /* border-left: 3px solid #2e6b3a; */
    border-radius: 0 6px 6px 0;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #1e4a27;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #1e4a27;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.beliefs {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
}

.belief {
    font-size: 1rem;
    color: #2e6b3a;
    font-style: italic;
    margin: 0;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title,
.audience-title {
    color: #1e4a27;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-points {
        flex-direction: column;
        gap: 0.6rem;
    }

    .point-item {
        padding: 0.7rem;
        min-width: auto;
    }

    .point-item.expanded {
        padding: 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Tamarind Plants Page Styles - Optimized Spacing */
.tamarind-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #4a7729;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-content strong {
    color: #2d5016;
    font-weight: 600;
}

/* Compact Points */
.compact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.compact-points.vertical {
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: white;
    border: 1px solid #d7ccc8;
    border-radius: 6px;
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
}

.point-item.expanded {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #d7ccc8;
    border-radius: 8px;
}

.point-icon {
    color: #4a7729;
    font-weight: bold;
    flex-shrink: 0;
}

.point-item.expanded .point-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.point-content h4 {
    color: #2d5016;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.point-content h3 {
    color: #2d5016;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.point-content p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #d7ccc8;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7729;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #4a7729;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #f8fff3;
    /* border-left: 3px solid #4a7729; */
    border-radius: 0 6px 6px 0;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #d7ccc8;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title,
.audience-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-points {
        flex-direction: column;
        gap: 0.6rem;
    }

    .point-item {
        padding: 0.7rem;
        min-width: auto;
    }

    .point-item.expanded {
        padding: 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}

/* Jamun Plants Page Styles - Optimized Spacing */
.jamun-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #4a7729;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.section-content strong {
    color: #2d5016;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7729;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #4a7729;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #f8fff3;
    /* border-left: 3px solid #4a7729; */
    border-radius: 0 6px 6px 0;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Custard Apple Plants Page Styles - Optimized Spacing */
.custard-apple-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content strong {
    color: #2d5016;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #4a7c2a;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    /* border-left: 3px solid #4a7c2a; */
    border-radius: 0 6px 6px 0;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Lemon Plants Page Styles - Optimized Spacing */
.lemon-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #4a7c2a;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Lemon Specific Color Scheme */
.lemon-plants-page .section-title,
.lemon-plants-page .main-title {
    color: #2d5016;
}

.lemon-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Teakwood Plants Page Styles - Optimized Spacing */
.teakwood-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Care Icons */
.care-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #4a7c2a;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title,
.care-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Teakwood Specific Color Scheme */
.teakwood-plants-page .section-title,
.teakwood-plants-page .main-title {
    color: #2d5016;
}

.teakwood-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Grafted Fruit Plants Page Styles - Optimized Spacing */
.grafted-fruit-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Grafted Fruit Specific Color Scheme */
.grafted-fruit-plants-page .section-title,
.grafted-fruit-plants-page .main-title {
    color: #2d5016;
}

.grafted-fruit-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


/* Ornamental & Flowering Plants Page Styles - Following Grafted Fruit Plants Structure */
.ornamental-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Alternating Backgrounds */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Flowering Plants Grid */
.flowering-plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.flowering-plant-item {
    background: white;
    padding: 0.8rem 0.6rem;
    border: 1px solid #006B3E;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
    /* color: #2d5016; */
    color: #000;
    font-weight: 500;
    transition: all 0.2s ease;
}

.flowering-plant-item:hover {
    background-color: #f0f7ec;
    transform: translateY(-2px);
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 0.95rem;
}

.check-list img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Applications List */
.applications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.application-item {
    background: white;
    padding: 0.8rem;
    border: 1px solid #e0f0d9;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
    /* color: #2d5016; */
    color: #000;
    font-weight: 500;
    transition: all 0.2s ease;
}

.application-item:hover {
    background-color: #f0f7ec;
    transform: translateY(-2px);
}

/* Plant Category */
.plant-category {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fdf9;
    border-radius: 6px;
    border: 1px solid #e0f0d9;
}

.plant-category h3 {
    color: #2d5016;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

    .flowering-plants-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .applications-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .main-title {
        font-size: 1.9rem;
    }

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

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

    .flowering-plants-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .applications-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

    .flowering-plants-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .applications-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

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

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

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .flowering-plants-grid {
        grid-template-columns: 1fr;
    }

    .applications-list {
        grid-template-columns: 1fr;
    }
}

/* Custom styles for ornamental plants */
.category-icon {
    display: block;
    margin: 0 auto 0.5rem;
}

.category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}



/* Plumeria Plants Page Styles - Following Grafted Fruit Plants Structure */
.plumeria-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Alternating Backgrounds */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Plumeria Plants Specific Color Scheme */
.plumeria-plants-page .section-title,
.plumeria-plants-page .main-title {
    color: #2d5016;
}

.plumeria-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
@media (min-width: 1400px) {
    .main-title {
        font-size: 2.2rem;
    }

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

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

@media (min-width: 1200px) and (max-width: 1399px) {
    .main-title {
        font-size: 2rem;
    }

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

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

@media (min-width: 992px) and (max-width: 1199px) {
    .content-section {
        padding: 1.3rem 0;
    }

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

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

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

@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.2rem 0;
    }

    .main-title {
        font-size: 1.6rem;
    }

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.1rem 0;
    }

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

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

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Forest & Shade Plants Page Styles */
.forest-shade-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.cta-text b {
    color: #000;
    font-weight: 600;
}

/* Forest & Shade Plants Specific Color Scheme */
.forest-shade-plants-page .section-title,
.forest-shade-plants-page .main-title {
    color: #2d5016;
}

.forest-shade-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Design */

/* For screens ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* For screens ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* For screens ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* For screens ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

/* For screens ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

/* For screens <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* Specimen & Exotic Plants Page Styles */
.specimen-exotic-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.cta-text b {
    color: #000;
    font-weight: 600;
}

/* Specimen & Exotic Plants Specific Color Scheme */
.specimen-exotic-plants-page .section-title,
.specimen-exotic-plants-page .main-title {
    color: #2d5016;
}

.specimen-exotic-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Design */

/* For screens ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.1rem;
    }

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

/* For screens ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* For screens ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* For screens ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

/* For screens ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

/* For screens <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* Mature & Ready Landscaping Plants Page Styles */
.mature-ready-plants-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.cta-text b {
    color: #000;
    font-weight: 600;
}

/* Mature & Ready Plants Specific Color Scheme */
.mature-ready-plants-page .section-title,
.mature-ready-plants-page .main-title {
    color: #2d5016;
}

.mature-ready-plants-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Design */

/* For screens ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.1rem;
    }

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

/* For screens ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* For screens ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* For screens ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

/* For screens ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

/* For screens <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* For Export Page Styles */
.for-export-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

.section-intro {
    font-size: 1.1rem;
    color: #2d5016;
    text-align: center;
    margin: 1.5rem 0;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Export Process Grid - Box Layout */
.export-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.process-step-box {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
    position: relative;
}

.process-step-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.step-number {
    background-color: #2d5016;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 2px 5px rgba(45, 80, 22, 0.3);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 0.5rem;
}

.step-content h4 {
    color: #2d5016;
    margin: 0.8rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.step-content p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (min-width: 1400px) {
    .export-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .process-step-box {
        min-height: 170px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .export-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
    }

    .process-step-box {
        min-height: 180px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .export-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .process-step-box {
        min-height: 190px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .export-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-step-box {
        min-height: 180px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .export-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .process-step-box {
        min-height: 170px;
        padding: 1rem 0.8rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -16px;
    }
}

@media (max-width: 575px) {
    .export-process-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-step-box {
        min-height: 160px;
        padding: 1rem 0.8rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -16px;
    }

    .step-content h4 {
        font-size: 1rem;
    }

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

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.cta-text b {
    color: #000;
    font-weight: 600;
}

/* For Export Specific Color Scheme */
.for-export-page .section-title,
.for-export-page .main-title {
    color: #2d5016;
}

.for-export-page .compact-card:hover {
    border-color: #4a7c2a;
}

.for-export-page .process-step:hover {
    border-color: #4a7c2a;
}

/* Responsive Design */

/* For screens ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.1rem;
    }

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

/* For screens ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* For screens ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* For screens ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

    .export-process-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For screens ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .export-process-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For screens <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .export-process-grid {
        max-width: 100%;
    }

    .process-step {
        padding: 0.8rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* Corporates & Institutions Page Styles */
.corporates-institutions-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e0f0d9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.service-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: #000;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features {
    background-color: #f8fcf5;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.service-features p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #000;
    position: relative;
    padding-left: 1.2rem;
}

.service-features p:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c2a;
    font-weight: bold;
}

.service-note {
    font-style: italic;
    color: #2d5016;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #e0f0d9;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem;
    background: white;
    border: 1px solid #e0f0d9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-color: #4a7c2a;
}

.step-number {
    background-color: #2d5016;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.step-content h4 {
    color: #2d5016;
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Project Types List */
.project-types-list {
    margin: 1.5rem 0;
    text-align: center;
}

.project-types-list ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    display: inline-block;
    text-align: left;
}

.project-types-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #000;
    position: relative;
    padding-left: 1.5rem;
}

.project-types-list li:before {
    content: "•";
    color: #4a7c2a;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e0;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

.cta-text b {
    color: #000;
    font-weight: 600;
}

/* Corporates & Institutions Specific Color Scheme */
.corporates-institutions-page .section-title,
.corporates-institutions-page .main-title {
    color: #2d5016;
}

.corporates-institutions-page .compact-card:hover,
.corporates-institutions-page .service-card:hover,
.corporates-institutions-page .process-step:hover {
    border-color: #4a7c2a;
}

/* Responsive Design */

/* For screens ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.1rem;
    }

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

/* For screens ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

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

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

/* For screens ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

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

/* For screens ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For screens ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For screens <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .service-card {
        padding: 1.2rem 1rem;
    }

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

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .benefits-title {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* Farmers & Growers Page Styles - Following Grafted Fruit Plants Structure */
.farmers-growers-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding - Same as grafted page */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Farmers & Growers Specific Color Scheme */
.farmers-growers-page .section-title,
.farmers-growers-page .main-title {
    color: #2d5016;
}

.farmers-growers-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
/* ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.2rem;
    }

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

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

/* ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-title {
        font-size: 1.9rem;
    }

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

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

/* ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

/* ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

/* <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

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

    .benefits-title {
        font-size: 1.2rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .emphasis-text {
        font-size: 0.95rem;
    }
}


/* Bungalows, Villas & Farmhouse Page Styles - Following Grafted Fruit Plants Structure */
.bungalows-villas-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections with Minimal Padding - Same as grafted page */
.content-section {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.section-tagline {
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8f5e0;
}

.section-subtitle {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Compact Grid System */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.compact-card {
    background: white;
    padding: 1.2rem 1rem;
    border: 1px solid #e0f0d9;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: #4a7c2a;
}

.compact-icon {
    margin-bottom: 0.6rem;
}

.compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.compact-card h3,
.compact-card h4 {
    color: #2d5016;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.compact-card p {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Box */
.highlight-box.compact-box {
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #e8f5e0;
    border-radius: 6px;
}

.highlight-box.compact-box p {
    margin: 0;
    color: #2d5016;
    font-size: 1rem;
}

.highlight-box.compact-box b {
    color: #000;
    font-weight: 600;
}

/* Emphasis Text */
.emphasis-text {
    font-style: italic;
    color: #2d5016;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0f0d9;
}

.emphasis-text b {
    color: #000;
    font-weight: 600;
}

/* Philosophy Box */
.highlight-box.compact-box.philosophy {
    text-align: center;
    padding: 1.2rem;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.philosophy-text b {
    color: #000;
    font-weight: 600;
}

/* Benefits, Care, Audience Titles */
.benefits-title {
    color: #2d5016;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    font-weight: 600;
}

/* Bungalows & Villas Specific Color Scheme */
.bungalows-villas-page .section-title,
.bungalows-villas-page .main-title {
    color: #2d5016;
}

.bungalows-villas-page .compact-card:hover {
    border-color: #4a7c2a;
}

/* Responsive Adjustments */
/* ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.2rem;
    }

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

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

/* ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2rem;
    }

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

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

/* ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-title {
        font-size: 1.9rem;
    }

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

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

/* ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.3rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

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

/* ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.2rem 0;
    }

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

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

    .section-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

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

    .compact-card {
        padding: 1rem 0.8rem;
    }
}

/* <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

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

    .benefits-title {
        font-size: 1.2rem;
    }

    .highlight-box.compact-box {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .compact-card {
        padding: 1rem 0.8rem;
    }

    .emphasis-text {
        font-size: 0.95rem;
    }
}


/* Consultancy Page Styles - Following Document Structure */
.consultancy-page {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Sections */
.content-section {
    padding: 2rem 0;
    transition: background-color 0.3s ease;
}

/* Main Title */
.main-title {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 0;
    font-weight: 700;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

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

.section-content p {
    /* margin-bottom: 1rem; */
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000;
    text-align: center;
}

.section-content b {
    color: #000;
    font-weight: 600;
}

/* Consultancy Categories */
.consultancy-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultancy-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.category-title {
    color: #2d5016;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #e0f0d9;
    padding-bottom: 0.5rem;
}

.category-description {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

/* Contact Information */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-item h4 {
    color: #2d5016;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #000;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Consultancy Tagline */
.consultancy-tagline {
    text-align: center;
    padding: 2rem;
    background-color: #e8f5e0;
    border-radius: 8px;
    margin-top: 2rem;
}

.consultancy-tagline p {
    font-size: 1.3rem;
    color: #2d5016;
    font-style: italic;
    margin: 0;
}

.consultancy-tagline b {
    color: #000;
    font-weight: 600;
}

/* Responsive Adjustments */
/* ≥1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .main-title {
        font-size: 2.5rem;
    }

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

    .section-content p {
        font-size: 1.2rem;
    }
}

/* ≥1200px */
@media (min-width: 1200px) {
    .main-title {
        font-size: 2.3rem;
    }

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

    .consultancy-category {
        padding: 2rem;
    }
}

/* ≥992px */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-title {
        font-size: 2.1rem;
    }

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

    .consultancy-category {
        padding: 1.8rem;
    }
}

/* ≥768px */
@media (min-width: 768px) and (max-width: 991px) {
    .content-section {
        padding: 1.8rem 0;
    }

    .main-title {
        font-size: 1.9rem;
    }

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

    .section-content p {
        font-size: 1.05rem;
    }

    .contact-info {
        gap: 1.5rem;
    }
}

/* ≥576px */
@media (min-width: 576px) and (max-width: 767px) {
    .content-section {
        padding: 1.5rem 0;
    }

    .main-title {
        font-size: 1.7rem;
    }

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

    .section-content p {
        font-size: 1rem;
        text-align: left;
    }

    .consultancy-category {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .category-title {
        font-size: 1.3rem;
        text-align: center;
    }

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

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-item {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
}

/* <576px */
@media (max-width: 575px) {
    .content-section {
        padding: 1.2rem 0;
    }

    .container {
        padding: 0 12px;
    }

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

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

    .section-content p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.6;
    }

    .consultancy-category {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .category-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .category-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .contact-item {
        min-width: 100%;
        padding: 1.2rem;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .consultancy-tagline {
        padding: 1.5rem;
    }

    .consultancy-tagline p {
        font-size: 1.1rem;
    }
}



