/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}


/* Hero Section */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1532187891997-584ad7938951?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a8e6cf;
}

.legacy {
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #005c23;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    transition: background 0.3s;
}

.btn.secondary {
    background: #f39c12;
}

.btn:hover {
    opacity: 0.9;
}

/* Sections */
section {
    padding: 4rem 10%;
    text-align: center;
}

.dark-section {
    background: #f9f9f9;
}

.container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
}

footer {
    padding: 2rem;
    background: #222;
    color: white;
    text-align: center;
}

/* Founder Section Styles */
.founder-section {
    background-color: #ffffff;
    padding: 60px 10%;
    border-bottom: 1px solid #eee;
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    /* Aligns text for better readability */
}

.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* Makes the photo circular */
    object-fit: cover;
    border: 5px solid #a8e6cf;
    /* Light green border */
}

.founder-text h2 {
    color: #005c23;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.founder-name {
    margin-bottom: 0;
    color: #333;
}

.founder-title {
    font-size: 0.9rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Styling for the Group Links */
.group-link,
.footer-link {
    color: #005c23;
    /* Matching your dark green theme */
    text-decoration: none;
    /* Removes the underline */
    font-weight: bold;
    transition: color 0.3s ease;
}

.group-link:hover,
.footer-link:hover {
    color: #f39c12;
    /* Changes to amber/orange on hover */
    text-decoration: underline;
}

.footer-link {
    color: #a8e6cf;
    /* Lighter green for the dark footer background */
}

/* Speakers Section */
.speakers-section {
    padding: 60px 10%;
    background-color: #fdfdfd;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.year-heading {
    text-align: left;
    color: #005c23;
    border-left: 5px solid #f39c12;
    padding-left: 15px;
    margin: 40px 0 20px 0;
}

/* The Grid Layout */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Speaker Card */
.speaker-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
}

.speaker-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(20%);
}

.speaker-info {
    padding: 20px;
    text-align: left;
}

.speaker-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.affiliation {
    font-size: 0.9rem;
    color: #005c23;
    font-weight: 600;
    margin-bottom: 10px;
}

.topic {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
}

.speakers-section {
    padding: 60px 10%;
    background-color: #f9fbf9;
    /* Very light green tint */
}

.year-heading {
    color: #005c23;
    font-size: 2rem;
    margin: 50px 0 30px;
    text-align: left;
    border-bottom: 2px solid #a8e6cf;
    display: inline-block;
}

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.speaker-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.speaker-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.speaker-info {
    padding: 20px;
    flex-grow: 1;
}

.speaker-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.speaker-title {
    font-size: 0.9rem;
    color: #f39c12;
    /* Amber color for the title */
    font-weight: bold;
    margin: 5px 0;
}

.affiliation {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* Schedule Section Styles */
.schedule-section {
    padding: 60px 10%;
    background-color: #ffffff;
    text-align: center;
}

.schedule-table-container {
    margin-top: 30px;
    overflow-x: auto;
    /* Ensures table is scrollable on small mobile screens */
}

.schedule-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.schedule-table thead {
    background-color: #005c23;
    color: white;
}

.schedule-table th,
.schedule-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table tbody tr:hover {
    background-color: #f9fbf9;
}

/* Highlight the actual conference day */
.highlight-row {
    background-color: #fff9eb;
    /* Light amber tint */
    color: #333;
}

.highlight-row td {
    border-left: 5px solid #f39c12;
    /* Amber accent */
}

@media (max-width: 600px) {

    .schedule-table th,
    .schedule-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Upcoming 2026 Section */
.upcoming-section {
    padding: 60px 10%;
    background-color: #f4f7f4;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.upcoming-card {
    background: #fff;
    padding: 40px 25px 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.upcoming-card:hover {
    transform: translateY(-10px);
    border-color: #005c23;
}

/* The "Upcoming" Badge */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #005c23;
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.upcoming-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.upcoming-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- ADVANCED 2026 SPEAKERS SECTION --- */

.speakers-2026-section {
    padding: 100px 10%;
    /* Subtle premium gradient background */
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f4 100%);
}

.speaker-2026-grid {
    display: grid;
    /* Forces exactly 2 columns on desktop */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* Advanced Card Styling */
.speaker-2026-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    /* Makes the card horizontal (Image left, text right) */
    flex-direction: row;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 92, 35, 0.08);
    /* Advanced bouncy hover transition */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speaker-2026-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 92, 35, 0.15);
    border-color: #a8e6cf;
}

/* Image Container (Left Side) */
.image-container {
    position: relative;
    flex: 0 0 40%;
    /* Image takes exactly 40% of the card width */
    min-height: 250px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium Glassmorphism Badge */
.status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 92, 35, 0.8);
    backdrop-filter: blur(8px);
    /* Blurs the image behind the tag */
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Details Container (Right Side) */
.speaker-2026-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.speaker-2026-details h3 {
    margin: 0 0 5px 0;
    color: #222;
    font-size: 1.4rem;
}

.role {
    color: #f39c12;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.org {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* TBA Placeholder Styling */
.tba-placeholder {
    font-size: 4rem;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: bold;
    background: #f0f0f0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 950px) {
    .speaker-2026-grid {
        /* Drops to 1 column on tablets and phones */
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .speaker-2026-card {
        /* On very small phones, stack the image on top of the text */
        flex-direction: column;
    }

    .image-container {
        flex: auto;
        height: 250px;
    }
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
    background: #ffffff;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    margin-left: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #005c23;
    /* Cellulose Green */
}

/* Special styling for the Register link in the nav */
.nav-cta {
    background-color: #005c23;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 2rem !important;
}

.nav-cta:hover {
    background-color: #f39c12;
    /* Changes to Amber on hover */
}

/* Ensure smooth scrolling when clicking links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Prevents the sticky nav from covering section headings */
}

/* Social Links in Nav */
.social-icon a {
    font-size: 0.85rem;
    color: #005c23;
    font-weight: bold;
}

/* Footer Social Styling */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-socials {
    margin-top: 10px;
}

.footer-socials a {
    color: #a8e6cf;
    /* Light green for dark background */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #f39c12;
    /* Amber hover */
}

.divider {
    color: #555;
    margin: 0 10px;
}

/* Hero Banner Main Structure */
.hero-banner {
    position: relative;
    height: 90vh;
    /* Banner covers 90% of viewport height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center content overlay vertically */
    justify-content: center;
    /* Center content overlay horizontally */
}

/* Three Side-by-Side Images Grid */
.image-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    /* Images stay behind content */
}

.image-panel {
    flex: 1;
    /* Each panel takes up 1/3 of the width */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(60%);
    /* Subtle darkening for overall banner feel */
}

/* Customize specific panels (Optional: if images are too bright) */
.panel-2 {
    filter: brightness(50%);
    /* Darken center panel slightly more */
}

/* Solid Background Content Overlay */
.content-overlay {
    position: relative;
    z-index: 2;
    /* Sits above the image grid */
    background-color: rgba(0, 0, 0, 0.85);
    /* Solid dark background with slight transparency for depth */
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle definition border */
}

.content-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.content-overlay .badge {
    background-color: #005c23;
    /* Dark green theme */
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    margin-right: 5px;
}

.legacy {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 30px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background-color: #005c23;
    /* Dark green */
}

.btn.secondary {
    background-color: #f39c12;
    /* Amber orange */
}

/* Social Icon Styling in Nav */
.social-icon a {
    font-size: 1.2rem;
    color: #005c23;
    transition: color 0.3s;
}

.social-icon a:hover {
    color: #f39c12;
    /* Changes to amber on hover */
}

/* Sponsors Section */
.sponsors-section {
    padding: 60px 10%;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #eee;
    /* Adds a subtle separator line */
}

.sponsor-tier {
    margin-bottom: 50px;
}

/* Tier Titles with distinct colors */
.tier-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    padding-bottom: 5px;
}

.tier-title.platinum {
    color: #444;
    border-bottom: 2px solid #e5e4e2;
    /* Platinum color */
}

.tier-title.gold {
    color: #b8860b;
    border-bottom: 2px solid #ffd700;
    /* Gold color */
}

.tier-title.silver {
    color: #666;
    border-bottom: 2px solid #c0c0c0;
    /* Silver color */
}

/* Flexbox Grid for Logos */
.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Adjusting sizes based on tier */
.platinum-grid .sponsor-logo img {
    max-width: 250px;
}

.gold-grid .sponsor-logo img {
    max-width: 200px;
}

.silver-grid .sponsor-logo img {
    max-width: 150px;
}

/* The Logo Image Styling & Hover Effect */
.sponsor-logo img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 10%;
    background-color: #f4f7f4;
    /* Light green-gray background */
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Left Side: Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #005c23;
    /* Cellulose Dark Green */
    color: white;
}

.contact-info h3 {
    color: #a8e6cf;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f39c12;
    /* Amber */
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Right Side: Form */
.contact-form-box {
    flex: 1.5;
    min-width: 300px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #005c23;
    box-shadow: 0 0 5px rgba(0, 92, 35, 0.2);
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
    cursor: pointer;
}

/* Industry Participants Section */
.industry-section {
    padding: 60px 10%;
    background-color: #fafafa;
    /* Very light gray to separate from white sections */
    text-align: center;
}

.industry-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    align-items: center;
    /* Vertically centers logos of different heights */
}

.industry-logo {
    background: #ffffff;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.industry-logo img {
    width: 100%;
    height: auto;
    max-height: 70px;
    /* Prevents logos from getting too tall */
    object-fit: contain;
    /* Ensures the logo isn't stretched or squished */
    filter: grayscale(100%);
    /* Optional: makes them look uniform */
    transition: filter 0.3s ease;
}

.industry-logo:hover img {
    filter: grayscale(0%);
    /* Brings color back on hover */
}

/* Industry Sectors Tags */
.industry-sectors {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.industry-sectors p {
    color: #444;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.sector-tag {
    background-color: #e8f5e9;
    /* Very light green */
    color: #005c23;
    /* Cellulose green */
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #a8e6cf;
}

/* --- Base Navigation Styles --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #005c23;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #005c23;
}

/* --- Dropdown Styling (Desktop) --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #005c23;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Mobile Menu Elements (Hidden on Desktop) --- */
.menu-checkbox {
    display: none;
    /* Always hide the actual checkbox */
}

.hamburger {
    display: none;
    /* Hide the icon on desktop */
    font-size: 28px;
    cursor: pointer;
    color: #005c23;
}

/* --- Mobile View Styling (Screens smaller than 900px) --- */
@media (max-width: 900px) {
    .hamburger {
        display: block;
        /* Show the icon */
    }

    .nav-links {
        display: none;
        /* Hide the links by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        /* Adjust based on navbar height */
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    /* When the checkbox is clicked, show the menu */
    .menu-checkbox:checked~.nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    /* Adjust dropdown for mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #f9fbf9;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        /* Expands inline on mobile */
    }

    .nav-cta {
        display: inline-block;
        margin-top: 10px;
    }
}
/* --- Competition Images Styling --- */

.competition-image {
    display: flex;               /* This forces the images into a row */
    flex-direction: row;         /* Left-to-right alignment */
    justify-content: center;     /* Centers the images in the container */
    align-items: stretch;        /* Ensures both images are the same height */
    gap: 30px;                   /* Adds a clean space between the two images */
    margin: 40px auto;           /* Adds space above and below the images */
    max-width: 500px;           /* Prevents them from getting too massive on huge screens */
}

.competition-image img {
    flex: 1;                     /* Tells both images to take up exactly 50% of the space */
    width: 100%;                 /* Responsive width */
    height: auto;                /* Maintains the original aspect ratio */
    border-radius: 12px;         /* Gives the images modern, rounded corners */
    box-shadow: 0 10px 25px rgba(0, 92, 35, 0.1); /* Subtle green-tinted shadow */
    object-fit: contain;           /* Prevents the images from stretching if they have different proportions */
}

/* --- Mobile Responsiveness for Competition Images --- */
@media (max-width: 768px) {
    .competition-image {
        flex-direction: column;  /* Stacks the images one below the other on phones */
        gap: 20px;
    }
}