/* Comparison Table Specific Styles */
.comparison-table-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.comparison-header {
    display: flex;
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.comparison-header-cell {
    padding: 1.25rem 0.75rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header-cell:last-child {
    border-right: none;
}

.comparison-header-cell.features-column {
    width: 32%;
    background-color: var(--dark-bg);
    text-align: left;
}

.comparison-header-cell.platinum,
.comparison-header-cell.gold,
.comparison-header-cell.silver,
.comparison-header-cell.bronze {
    flex: 1;
    width: 17%;
    background-size: cover;
}

.comparison-header-cell h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.3rem);
    text-align: center;
}

.comparison-header-cell.features-column h3 {
    text-align: left;
}

.comparison-header-cell.platinum {background-image: url(../img/logo-platinum-bg\ \(2\).png); }
.comparison-header-cell.gold { background-image: url(../img/logo-gold.jpg); }
.comparison-header-cell.silver { background-image: url(../img/logo-silver-bg.png); }
.comparison-header-cell.bronze { background-image: url(../img/logo-bronze.jpg); }

.price {
    font-size: clamp(1.2rem, 1vw + 1rem, 1.8rem);
    font-weight: 500;
    margin-top: 0.5rem;
}

.comparison-table {
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    width: 100%;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
}

.comparison-row:nth-child(odd) {
    background-color: #f9f9f9;
}

.comparison-cell {
    padding: 0.75rem 0.75rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.8rem, 0.5vw + 0.7rem, 0.95rem);
}

.comparison-cell.features-column {
    width: 32%;
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;
    border-right: 1px solid #ebebeb;
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-cell.platinum,
.comparison-cell.gold,
.comparison-cell.silver,
.comparison-cell.bronze {
    flex: 1;
    width: 17%;
}

.comparison-cell.included {
    color: #4caf50;
    font-weight: bold;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
}

.comparison-cell.not-included {
    color: #bdbdbd;
}

.comparison-cell.platinum { background-color: rgba(106, 76, 255, 0.03); }
.comparison-cell.gold { background-color: rgba(255, 167, 38, 0.03); }
.comparison-cell.silver { background-color: rgba(120, 144, 156, 0.03); }
.comparison-cell.bronze { background-color: rgba(191, 117, 45, 0.03); }

.comparison-footer {
    display: flex;
    background-color: #f5f5f5;
    border-top: 2px solid #e0e0e0;
    width: 100%;
}

.comparison-footer-cell {
    padding: 1.25rem 0.75rem;
    text-align: center;
}

.comparison-footer-cell.features-column {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.comparison-footer-cell.platinum,
.comparison-footer-cell.gold,
.comparison-footer-cell.silver,
.comparison-footer-cell.bronze {
    flex: 1;
    width: 17%;
}

/* Styling for buttons within the footer */
.comparison-footer-cell .btn-primary {
    width: 100%;
    max-width: 10rem;
    min-width: 10rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 50px;
    cursor: pointer;
}

.comparison-footer-cell.features-column p {
    font-weight: 600;
    margin: 0;
    font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1rem);
}

/* Background colors for package-specific buttons */
.comparison-footer-cell.platinum .btn-primary { background-color: #d1d3d3; }
.comparison-footer-cell.gold .btn-primary { background-color: #ebc265; }
.comparison-footer-cell.silver .btn-primary { background-color: #9b9b9b; }
.comparison-footer-cell.bronze .btn-primary { background-color: #e9ad8e; }

/* Hover effects for footer buttons */
.comparison-footer-cell.platinum .btn-primary:hover { background-color: #afb3b5; transform: translateY(-1px); }
.comparison-footer-cell.gold .btn-primary:hover { background-color: #c59937; transform: translateY(-1px); }
.comparison-footer-cell.silver .btn-primary:hover { background-color: #607d8b; transform: translateY(-1px); }
.comparison-footer-cell.bronze .btn-primary:hover { background-color: #a86626; transform: translateY(-1px); }

/* Additional Opportunities Section */
.additional-opportunities {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 1rem;
}

.additional-opportunities p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.additional-opportunities .btn-primary {
    background-color: #1a84b3;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    min-width: 10rem;
}

.additional-opportunities .btn-primary:hover {
    background-color: #156a92;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-color: #000000;
    --secondary-color: #FF8C00;
    --dark-bg: #2A2A2A;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #686868;
    --footer-bg: #484848;
    --highlight-bg: #E6E6FA;
    --button-hover: #1a84b3;
    --container-width: 1200px;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    min-width: 10rem;
}

.available-opportunities .btn-primary{
    background-color: var(--button-hover);
    border: none;
}

/* General primary button style - includes border */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--button-hover);
    border-color: var(--button-hover);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Header/Hero Section */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0);
    will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

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

.logo-container {
    margin-bottom: 3rem;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.logo {
    max-width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.animated-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 2.5rem;
    color: #ffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Specific h3 in Hero */
.hero h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Specific styles for Hero button */
.hero .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: #1a84b3;
    color: var(--white);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 100, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 12rem;
}

/* Shine effect for Hero button */
.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero .btn-primary:hover {
    background-color: #1a84b3;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(26, 132, 179, 0.3);
    text-decoration: none;
}

.hero .btn-primary:hover::before {
    left: 100%;
}

/* Pulsing animation for button */
.pulse {
    animation: pulse 2s infinite;
}

.event-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

/* Icons for date and location */
.event-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* SVG icons embedded as Data URI */
.date-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

.location-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    animation: fadeIn 2s ease-out 1.5s forwards;
    opacity: 0;
}

.scroll-down span {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* CORRECTED .arrow-down rule */
.arrow-down {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    animation: bounce 2s infinite;
    transform-origin: center center;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 132, 179, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(26, 132, 179, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 132, 179, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
    50% {
        transform: translateY(8px) rotate(45deg);
        opacity: 0.6;
    }
}

/* Main Content */
main {
    flex: 1;
}

/* Underline for section titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Sponsorship Packages Section */
.sponsorship-packages {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

/* NEW: Sponsorship Benefits Section Styles */
.sponsorship-benefits {
    margin-bottom: 4rem;
    text-align: center;
}

.benefits-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Current Sponsors Section */
.current-sponsors {
    padding: 5rem 0 3rem 0;
    background-color: var(--white);
}

/* Styles for Sponsor Banners */
.category-banner {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

.category-banner img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    filter: brightness(0.6);
}

.category-banner-title {
    position: absolute;
    bottom: 1.5rem;
    left: 0rem;
    color: var(--white);
    font-size: clamp(1.8rem, 3vw + 1rem, 2.3rem);
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    margin: 0;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 0 5px 5px 0;
    font-weight: 500;
    line-height: 1.2;
}

.sponsor-category {
    margin-bottom: 4rem;
}

/* Revised styles for .sponsor-item */
.sponsor-item {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	align-items:center;
}

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

/* Revised styles for .sponsor-logo */
.sponsor-logo {
    flex: 0 0 180px;
    background-color: #fff;
    padding: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-info {
    flex: 1;
}
.sponsor-info p {
    margin-bottom: 0.5rem;
}

/* Style for .sponsor-address */
.sponsor-address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Style for .sponsorship-type */
.sponsorship-type {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.75rem !important;
    font-size: 0.9em;
    font-weight: 600;
}

.sponsor-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* Section: Special Sponsors */
.special-sponsors {
    padding: 3rem 0 5rem 0;
    background-color: var(--light-bg);
}

/* Available Opportunities Section */
.available-opportunities {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}

.opportunities-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    font-size: 1.25rem;
}

.opportunities-list li {
    background-color: var(--highlight-bg);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

footer a {
    color: #1a84b3;
}

.footer-logo {
    margin: 2rem auto;
}

.logo-small {
    max-width: 150px;
    margin: 0 auto;
}

.social-links {
    margin: 1.5rem 0;
}

.social-link {
    display: inline-block;
    margin: 0 0.75rem;
    font-weight: 500;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Mobile Optimizations */
.mobile-comparison-wrapper {
    display: none;
}

@media (max-width: 768px) {
    /* Hide only desktop parts of comparison table */
    .comparison-table-container > .comparison-header,
    .comparison-table-container > .comparison-table,
    .comparison-table-container > .comparison-footer {
        display: none !important;
    }
    
    /* Keep container visible but show only mobile wrapper */
    .comparison-table-container {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    /* Show mobile wrapper */
    .mobile-comparison-wrapper {
        display: block !important;
        background-color: var(--white);
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 0;
    }
}

/* Button for Brochure Download (HTML removed, style remains) */
.brochure-download {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.brochure-download .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.9rem, 0.5vw + 0.8rem, 1.1rem);
    box-shadow: 0 4px 10px rgba(0, 0, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.brochure-download .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 255, 0.15);
    text-decoration: none;
}

/* Sticky header for desktop comparison table */
@media (min-width: 993px) {
    .comparison-header {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .animated-title {
        font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    }

    .subtitle {
        font-size: clamp(1.5rem, 2vw + 0.8rem, 2rem);
    }

    .hero h3 {
        font-size: clamp(1.1rem, 1vw + 0.8rem, 1.3rem);
    }

    .category-banner img {
        height: 150px;
    }
     .category-banner-title {
        font-size: clamp(1.6rem, 2.5vw + 1rem, 2.2rem);
        bottom: 1rem;
        left: 0rem;
        padding: 0.4rem 1.2rem;
    }

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

}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        position: relative;
        padding-bottom: 6rem;
    }

    .hero h3 {
        max-width: 95%;
    }

    .event-info {
        flex-direction: column;
        margin-bottom: 5rem;
    }

    .event-date, .event-location {
        margin: 0.5rem 0;
    }

    .scroll-down {
        bottom: 2.5rem;
    }

    .sponsor-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .sponsor-logo {
        flex: 0 0 auto;
        width: 150px;
        height: 80px;
        margin: 0 auto 1rem auto;
        padding: 0.5rem;
    }

    .sponsor-address {
        font-size: 0.85rem;
    }

     .category-banner img {
        height: 120px;
    }
     .category-banner-title {
        font-size: clamp(1.4rem, 4vw + 0.5rem, 1.8rem);
        bottom: 0.8rem;
        left: 0rem;
        padding: 0.3rem 1rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
    .benefits-title {
        font-size: 1.8rem;
    }
    .benefits-intro {
        font-size: 1rem;
    }
    .benefit-item {
        padding: 1.5rem 1rem;
    }

    .mobile-package-selector {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        position: sticky;
        top: 0;
        background-color: var(--white);
        z-index: 100;
        padding: 1rem 0;
        margin-top: -1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-package-tab {
        padding: 0.8rem 1rem;
        background-color: #f5f5f5;
        border-radius: 5px;
        font-weight: 600;
        font-size: clamp(0.85rem, 0.5vw + 0.7rem, 0.95rem);
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-package-tab.active {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .mobile-package-content {
        background-color: var(--white);
        border-radius: 10px;
        padding: 1.5rem;
        max-height: none;
        overflow-y: visible;
    }

    .mobile-package-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .mobile-package-header h3 {
        font-size: clamp(1.2rem, 1vw + 1rem, 1.4rem);
        margin-bottom: 0.5rem;
    }

    .mobile-package-price {
        font-size: clamp(1.6rem, 1vw + 1.4rem, 2rem);
        font-weight: 600;
        color: var(--primary-color);
    }

    .mobile-package-features {
        margin-bottom: 1.5rem;
    }

    .mobile-feature-row {
        display: flex;
        border-bottom: 1px solid #f0f0f0;
        padding: 0.8rem 0;
        align-items: center;
    }

    .mobile-feature-name {
        flex: 1;
        font-weight: 500;
        font-size: clamp(0.8rem, 0.5vw + 0.7rem, 0.9rem);
        padding-right: 10px;
        text-align: left;
    }

    .mobile-feature-value {
        flex: 0 0 auto;
        text-align: right;
        font-weight: 600;
        font-size: clamp(0.8rem, 0.5vw + 0.7rem, 0.9rem);
        min-width: 60px;
    }

    .mobile-feature-value.included {
        color: #4caf50;
        font-size: 1.2rem;
    }

    .mobile-feature-value.not-included {
        color: #bdbdbd;
    }

    .mobile-package-content .btn-primary {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 50px;
        min-width: 10rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 4rem 0 3rem;
        padding-bottom: 5rem;
    }

    .event-info {
        margin-bottom: 6rem;
    }

    .scroll-down {
        bottom: 2rem;
    }

    .animated-title {
        font-size: clamp(1.8rem, 4vw + 0.5rem, 2.2rem);
    }

    .subtitle {
        font-size: clamp(1.2rem, 2vw + 0.5rem, 1.4rem);
    }

    .logo {
        max-width: 220px;
    }

    .hero .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1.2rem;
    }

    .mobile-package-header {
        position: relative;
        top: auto;
        padding: 0.8rem 1rem;
    }

    .mobile-package-content {
        padding-top: 1.5rem;
        margin-top: 0;
    }

    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    .btn-primary:last-child, .btn-secondary:last-child {
        margin-bottom: 0;
    }

    .hero .btn-primary,
    .comparison-footer-cell .btn-primary,
    .available-opportunities .btn-primary,
    .additional-opportunities .btn-primary {
         display: inline-block;
         width: auto;
         margin-bottom: 0;
    }

    .comparison-footer-cell .btn-primary {
         width: 100%;
         max-width: 10rem;
         min-width: 10rem;
    }

    .mobile-package-content .btn-primary {
         display: block;
         width: 100%;
         margin-bottom: 0;
    }

    .sponsorship-packages,
    .current-sponsors,
    .special-sponsors,
    .available-opportunities {
        padding: 3rem 0;
    }
    .current-sponsors { padding-bottom: 1rem; }
    .special-sponsors { padding-bottom: 3rem; }

    .mobile-package-tab {
        padding: 0.7rem 1.2rem;
        font-size: clamp(0.8rem, 0.5vw + 0.6rem, 0.9rem);
    }

    .category-banner img {
        height: 100px;
    }
     .category-banner-title {
        font-size: clamp(1.2rem, 3vw + 0.5rem, 1.5rem);
        bottom: 0.5rem;
        left: 0rem;
        padding: 0.2rem 0.8rem;
    }

    .sponsor-item {
        padding: 1rem;
    }
    .sponsor-logo {
        width: 120px;
        height: 65px;
    }

    .benefits-title {
        font-size: 1.6rem;
    }
    .benefits-intro {
        font-size: 0.95rem;
    }
     .benefit-item {
        padding: 1.5rem 1rem;
    }
     .benefit-item-title {
        font-size: 1.1rem;
    }
     .benefit-item p {
        font-size: 0.9rem;
    }
}