* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

header {
    background: #8B5A2B;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #A3723F;
}

nav a.active {
    background: #A3723F;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section Styles */
.hero {
    position: relative;
    overflow: hidden;
    height: 80vh; /* Reduced from 70vh */
    color: #fff;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .absolute {
    position: absolute;
}

.hero .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero .bg-black {
    background-color: #000;
}

.hero .opacity-40 {
    opacity: 0.4;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Align text to bottom */
    justify-content: flex-end; /* Align text to right */
    padding-bottom: 1rem; /* Reduced padding */
}

.hero h2 {
    font-size: 1rem; /* Reduced base size (equivalent to text-base) */
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: right;
    margin: 0;
}

.hero h2 {
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .hero h2 {
        font-size: 1.875rem; /* Reduced to text-lg */
    }

    .sm\:w-3\/4 {
        width: 75%;
    }
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 2.25rem; /* Reduced to text-xl */
    }

    .md\:w-1\/2 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 40vh; /* Reduced from 50vh for tablets */
    }

    .hero .hero-content {
        padding-bottom: 1.25rem;
    }

    .hero h2 {
        font-size: 0.875rem; /* Reduced to text-sm */
        line-height: 1.3;
    }

    .sm\:w-3\/4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 30vh; /* Reduced from 40vh for mobile */
    }

    .hero .hero-content {
        padding-bottom: 0.5rem;
    }

    .hero h2 {
        font-size: 1rem; /* Reduced to text-xs */
        line-height: 1.4;
    }

    .w-full {
        width: 100%;
    }
}

/* Existing utility classes (unchanged) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.max-w-screen-xl {
    max-width: 1280px;
}
/* Existing utility classes (for context, unchanged) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.max-w-screen-xl {
    max-width: 1280px;
}

.gallery-intro {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    color: #fff;
    overflow: hidden;
}

.gallery-intro .slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-intro .slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-intro .slideshow-image.active {
    opacity: 1;
}

.gallery-intro .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: left;
    background: rgba(139, 90, 43, 0.7);
    border-radius: 8px;
    display: inline-block;
    max-width: 90%;
}

.gallery-intro .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.gallery-intro .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.intro, .progress, .about, .activities, .team, .team-full, .team-members, .gallery, .contact, .project-activities, .section, .phase-section {
    padding: 1rem 0;
}

.intro h2, .progress h2, .about h2, .activities h2, .team h2, .team-members h2, .gallery h2, .contact h2, .project-activities h2, .section h2, .phase-section h2 {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.intro p, .progress p, .about p, .activities p, .team p, .team-members p, .gallery p, .contact p, .project-activities p, .section p, .phase-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.intro {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.intro-content {
    flex: 1;
}

.intro-content p {
    text-align: justify;
}

.intro-image {
    flex: 0 0 40%;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

.about-image {
    flex: 0 0 50%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    text-align: justify;
}

.about .btn-container {
    text-align: center;
    margin-top: 1rem;
}

/* Phase Section Styles */
.phase-section {
    padding: 3rem 0;
    background-color: #fff;
}

.phase-section h2 {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.phase-content {
    display: flex;
    flex-wrap: wrap; /* Allow text to wrap under image */
    gap: 1.5rem;
    align-items: flex-start; /* Align items at top */
}

.phase-image {
    flex: 0 0 100%; /* Full width on smaller screens */
    max-width: 400px; /* Cap image width on larger screens */
    margin: 0;
}

.phase-image img {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.phase-text {
    flex: 1;
    min-width: 300px; /* Ensure text doesn’t get too narrow */
}

.phase-text p,
.phase-text ul {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.phase-text h3 {
    font-size: 1.25rem;
    color: #8B5A2B;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.phase-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.phase-reverse {
    flex-direction: row-reverse; /* Reverse order for Phase 2 */
}


/* Responsive adjustments */
@media (min-width: 768px) {
    .phase-image {
        flex: 0 0 40%; /* Image takes ~40% width on larger screens */
        max-width: 400px;
    }

    .phase-text {
        flex: 0 0 55%; /* Text takes ~55% width */
    }

    .phase-content {
        flex-wrap: nowrap; /* Side-by-side on larger screens */
    }
}

@media (max-width: 768px) {
    .phase-section {
        padding: 2rem 0;
    }

    .phase-section h2 {
        font-size: 1.5rem;
    }

    .phase-image {
        flex: 0 0 100%; /* Full device width when wrapping */
        max-width: 100%; /* Ensure full width */
        width: 100vw; /* Full viewport width */
        margin-left: calc(-1*(var(--container-padding, 0.5rem))); /* Adjust for padding */
        margin-right: calc(-1*(var(--container-padding, 0.5rem))); /* Adjust for padding */
    }

    .phase-image img {
        height: 250px; /* Slightly smaller for tablets */
        width: 100vw; /* Full viewport width */
    }

    .phase-text {
        min-width: 100%; /* Text takes full width below image */
    }
}

@media (max-width: 480px) {
    .phase-section {
        padding: 1.5rem 0;
    }

    .phase-section h2 {
        font-size: 1.25rem;
    }

    .phase-image {
        flex: 0 0 100%;
        max-width: 100vw;
        width: 100vw;
        margin-left: calc(-1 * (var(--container-padding, 0.5rem)));
        margin-right: calc(-1 * (var(--container-padding, 0.5rem)));
    }

    .phase-image img {
        height: 200px; /* Smaller for mobile */
        width: 100vw; /* Full viewport width */
    }

    .phase-text {
        min-width: 100%;
    }

    .phase-content {
        gap: 1rem;
    }
}

.project-activities {
    text-align: center;
}

.progress h3 {
    margin-top: 1.5rem;
    color: #8B5A2B;
}

.progress ul {
    list-style: disc;
    margin: 1rem 0 1rem 2rem;
}

.contact-section {
    padding: 1rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    text-align: left;
    flex: 1;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-details a {
    color: #8B5A2B;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.project-activities h2, .light-moments h2 {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 1.5rem;
    margin-top: 2rem;
}

.activities-grid img, .moments-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}


.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for more consistent column widths */
    gap: 1.5rem;
    margin-top: 2rem;
}

.moment-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.moment-card img {
    width: 100%;
    height: 200px; /* Uniform height across all breakpoints */
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .moments-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted for tablets */
        gap: 1rem;
    }

    .moment-card img {
        height: 200px; /* Maintain uniform height */
    }
}

@media (max-width: 480px) {
    .moments-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 0.75rem;
    }

    .moment-card img {
        height: 200px; /* Maintain uniform height */
    }

    .light-moments h2 {
        font-size: 1.5rem;
    }
}

.team-full {
    text-align: center;
}

.team-full img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

.team-members h2 {
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 210px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #8B5A2B;
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 0.5rem;
}

.timeline-section {
    margin-top: 2rem;
}

.timeline-section h2 {
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.timeline-section h3 {
    color: #8B5A2B;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-section h4 {
    color: #8B5A2B;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.timeline-section p {
    margin-bottom: 1rem;
}

.progress-timeline {
    margin-top: 2rem;
}

.progress-timeline h2 {
    color: #8B5A2B;
    margin-bottom: 1rem;
}

.progress-columns {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

 

.progress-column {
    flex: 1;
    text-align: center;
}

.progress-column img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.progress-column h3 {
    color: #8B5A2B;
    margin-bottom: 0.5rem;
}

.progress-column p {
    margin-bottom: 1rem;
}

.about .project-info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about .text-content h1 {
    margin-bottom: 1rem;
    color: #8B5A2B;
}

.about .text-content h2 {
    margin-bottom: 1rem;
    color: #8B5A2B;
}

.about .text-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.about .image-content {
    flex: 1;
}

.about .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mission-section {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.mission-column {
    flex: 1;
    text-align: center;
}

.mission-column h2 {
    margin-bottom: 1rem;
    color: #8B5A2B;
}

.mission-column p {
    margin-bottom: 1rem;
}

.enhancement-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

    .enhancement-section .image-content {
        flex: 1;
    }

    .enhancement-section .image-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .enhancement-section .text-content {
        flex: 1;
    }

    .enhancement-section .text-content h2 {
        color: #8B5A2B;
    }

.contact form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea {
    min-height: 150px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #8B5A2B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #A3723F;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sponsor-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor-card img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.sponsor-card p {
    font-size: 0.9rem;
    color: #333;
}

.sponsors {
    text-align: center;
}

.products-uses {
    padding: 3rem 0;
    background: #fff;
}

.products-uses .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.products-uses h2 {
    font-size: 2rem;
    color: #8B5A2B;
    margin-bottom: 2rem;
    text-align: center;
}

.products-uses .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.products-uses .card {
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-uses .card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.products-uses .card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.products-uses .card h3 {
    font-size: 1.25rem;
    color: #8B5A2B;
    margin: 1rem 0 0.5rem;
}

.products-uses .card p {
    font-size: 1rem;
    color: #333;
    padding: 0 1rem 1rem;
}

.vertex-agro {
    padding: 3rem 0;
    background: #8B5A2B;
    color: white;
}

.vertex-agro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vertex-agro h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vertex-agro .flex {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vertex-agro img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.vertex-agro p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

footer {
    background: #8B5A2B;
    color: white;
    margin-top: 2rem;
}

.footer-container {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section p {
    color: #fff;
}

.footer-section a {
    color: #fff;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #A3723F;
    color: #fff;
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
}



@media (max-width: 1024px) {
    .hero {
        height: 80vh;
    }

    .hero video {
        height: 100%;
    }

    .products-uses .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .vertex-agro .flex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
        text-align: center;
    }

    nav ul {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 0;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .hero {
        height: 60vh;
    }

    .hero video {
        height: 100%;
    }

    .hero .hero-content {
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
    }

    .hero .hero-text-left,
    .hero .hero-text-right {
        flex: 0 0 100%;
        max-width: 90%;
        margin-bottom: 1rem;
    }

    .hero .hero-text-left h1,
    .hero .hero-text-right h1 {
        font-size: 2rem;
    }

    .hero .hero-text-left p,
    .hero .hero-text-right p {
        font-size: 1rem;
    }

    .intro {
        flex-direction: column;
    }

    .intro-image {
        flex: 0 0 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 100%;
    }

    .phase-content {
        flex-direction: column;
    }

    .phase-image {
        flex: 0 0 100%;
    }

    .phase-content.phase-reverse {
        flex-direction: column;
    }

    .activities .progress-columns {
        flex-direction: column;
        text-align: center;
    }

    .progress-column img {
        max-width: 100%;
        height: 150px;
    }

    .timeline-section h3, .timeline-section h4 {
        margin-left: 1rem;
    }

    .team-full img {
        max-width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about .project-info {
        flex-direction: column;
        text-align: center;
    }

    .about .image-content img {
        max-width: 100%;
        height: auto;
    }

    .mission-section {
        flex-direction: column;
        text-align: center;
    }

    .enhancement-section {
        flex-direction: column;
        text-align: center;
    }

    .enhancement-section .image-content img {
        max-width: 100%;
        height: auto;
    }

    .gallery-intro {
        height: 300px;
    }

    .gallery-intro .hero-content {
        max-width: 95%;
        padding: 1rem;
    }

    .gallery-intro .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-intro .hero-content p {
        font-size: 0.9rem;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .moments-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .products-uses .grid {
        grid-template-columns: 1fr;
    }

    .vertex-agro .flex {
        flex-direction: column;
    }

    .vertex-agro img {
        max-height: 200px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }

    header {
        padding: 0.5rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

    nav ul {
        gap: 0.3rem;
    }

    nav a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }

    .hero {
        height: 50vh;
        padding: 0;
    }

    .hero video {
        height: 100%;
    }

    .hero .hero-content {
        padding: 0.5rem;
    }

    .hero .hero-text-left h1,
    .hero .hero-text-right h1 {
        font-size: 1.5rem;
    }

    .hero .hero-text-left p,
    .hero .hero-text-right p {
        font-size: 0.9rem;
    }

    .gallery-intro .hero-content {
        padding: 0.5rem;
    }

    .products-uses .card h3 {
        font-size: 1.1rem;
    }

    .products-uses .card p {
        font-size: 0.9rem;
    }

    .vertex-agro h2 {
        font-size: 1.5rem;
    }

    .vertex-agro p {
        font-size: 0.9rem;
    }

    .footer-container {
        padding: 1rem;
    }
}


/* New styles for solutions.php */
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-white {
    background-color: #fff;
}

.bg-green-600 {
    background-color: #8B5A2B;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-800 {
    background-color: #000;
}

.text-yellow-800 {
    color: #92400e;
}

.text-yellow-600 {
    color: #ca8a04;
}

.text-green-600 {
    color: #16a34a;
}

.text-red-600 {
    color: #dc2626;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-600 {
    color: #4b5563;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gap-4 {
    gap: 1rem;
}

.sm\:gap-6 {
    gap: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.md\:flex-row {
    flex-direction: row;
}

.md\:w-2\/3 {
    width: 66.666667%;
}

.md\:w-1\/3 {
    width: 33.333333%;
}

.p-4 {
    padding: 1rem;
}

.sm\:p-6 {
    padding: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.sm\:text-xl {
    font-size: 1.25rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-base {
    font-size: 1rem;
}

.sm\:text-lg {
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-8 {
    margin-bottom: 2rem;
}

.sm\:mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.space-y-2 > :not(:last-child) {
    margin-bottom: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.max-h-80 {
    max-height: 20rem;
}

.object-cover {
    object-fit: cover;
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition {
    transition: all 0.3s ease;
}

.overflow-x-auto {
    overflow-x: auto;
}

.border-collapse {
    border-collapse: collapse;
}

.w-full {
    width: 100%;
}

.text-left {
    text-align: left;
}

.inline-block {
    display: inline-block;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.bg-yellow-800 {
    background-color: #92400e;
}

.text-white {
    color: #fff;
}

.hover\:bg-yellow-700:hover {
    background-color: #7c2d12;
}

.mt-8 {
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm\:p-6 {
        padding: 1.5rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
    }

    .sm\:mb-12 {
        margin-bottom: 3rem;
    }

    .sm\:gap-6 {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:w-2\/3 {
        width: 66.666667%;
    }

    .md\:w-1\/3 {
        width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }

    .p-4 {
        padding: 0.75rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
    }

    .text-base {
        font-size: 0.9rem;
    }

    .sm\:text-lg {
        font-size: 1rem;
    }

    .mb-8 {
        margin-bottom: 1.5rem;
    }

    .sm\:mb-12 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }

    .p-2 {
        padding: 0.5rem;
    }

    .text-2xl {
        font-size: 1.25rem;
    }

    .sm\:text-3xl {
        font-size: 1.5rem;
    }

    .text-base {
        font-size: 0.8rem;
    }

    .sm\:text-lg {
        font-size: 0.9rem;
    }

    .mb-8 {
        margin-bottom: 1rem;
    }

    .sm\:mb-12 {
        margin-bottom: 1.5rem;
    }

    .text-lg {
        font-size: 1rem;
    }

    .sm\:text-xl {
        font-size: 1.125rem;
    }
}