:root {
    --primary-color: #024226;
    --secondary-color: #2c3e50;
    --accent-color: #024226;
    --text-color: #333;
    --light-color: #e1f3ec;
    --dark-color: #222;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --background-color: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #02422686;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: #024226;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.page-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.page-header .container {
    width: 98%;
    max-width: 1600px;
    padding: 0 15px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-color);
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: rotate(360deg);
}

.logo-text {
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Banner Styles */
.banner {
    height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-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.7));
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 95%;
    padding: 0 30px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 4rem;
}

.title-separator {
    display: block;
    font-size: 2rem;
    margin: 10px 0;
}

.title-sub {
    display: block;
    font-size: 3rem;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.activity-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

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

.activity-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.activity-card .btn {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Event buttons styling */
.event-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.event-buttons .btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.85rem;
    padding: 8px 15px;
}

/* Reservation Page Styles */
.reservation-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reservation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.reservation-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 53, 13, 0.733), rgba(0, 53, 3, 0.8));
    z-index: 2;
}

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

.reservation-banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.reservation-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.reservation-info {
    padding: 80px 0;
    background-color: var(--background-color);
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.payment-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #024226;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-icon {
    font-size: 2rem;
    color: #024226;
    margin-top: 5px;
}

.notice-content h3 {
    color: #024226;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.notice-content p {
    color: #0a3824;
    line-height: 1.6;
}

.reservation-methods {
    margin-bottom: 40px;
}

.reservation-methods h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.method-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.method-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.method-content p {
    color: #666;
    margin-bottom: 15px;
}

.method-content .btn {
    margin-top: 10px;
}

.location-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.location-info p {
    margin: 5px 0;
    color: var(--text-color);
}

.reservation-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-color);
    font-weight: 500;
}

.reservation-image {
    position: relative;
}

.reservation-image .image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reservation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.contact-item {
    background: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-details p {
    color: #666;
    margin: 5px 0;
}

/* Responsive Design for Reservation Page */
@media (max-width: 768px) {
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reservation-banner h1 {
        font-size: 2.5rem;
    }
    
    .method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Partnership Highlight */
.partnership-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.partnership-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.partnership-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.partnership-buttons {
    display: flex;
    gap: 20px;
}

.partnership-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        width: 96%;
        padding: 0 15px;
    }
    
    .page-header .container {
        width: 97%;
        padding: 0 12px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .banner {
        height: 70vh;
    }
    
    .banner-title {
        font-size: 2.8rem;
    }
    
    .title-main {
        font-size: 3.2rem;
    }
    
    .title-sub {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .partnership-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnership-image {
        order: -1;
    }
    
    .partnership-buttons {
        flex-wrap: wrap;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-header .container {
        width: 96%;
        padding: 0 10px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .logo-text {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .banner {
        height: 60vh;
        min-height: 500px;
    }
    
    .banner-content {
        width: 96%;
        max-width: 900px;
        padding: 0 25px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .activities-section {
        padding: 60px 0;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-card {
        padding: 25px;
    }
    
    .activity-card h3 {
        font-size: 1.3rem;
    }
    
    .partnership-content h3 {
        font-size: 1.7rem;
    }
    
    .partnership-content p {
        font-size: 1rem;
    }
    
    .partnership-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .events-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-preview-card {
        flex-direction: column;
    }
    
    .event-preview-date {
        width: 100%;
    }
    
    .event-preview-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    .container {
        width: 96%;
        padding: 0 10px;
    }
    
    .page-header .container {
        width: 95%;
        padding: 0 8px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        max-width: 140px;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 10px 0;
    }
    
    .banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .banner-content {
        width: 94%;
        max-width: 600px;
        padding: 0 20px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-separator {
        font-size: 1.5rem;
        margin: 8px 0;
    }
    
    .title-sub {
        font-size: 1.6rem;
    }
    
    .banner-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .banner-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .activities-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .activities-grid {
        gap: 20px;
    }
    
    .activity-card {
        padding: 20px;
    }
    
    .activity-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .activity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .activity-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .partnership-highlight {
        gap: 20px;
    }
    
    .partnership-content h3 {
        font-size: 1.5rem;
    }
    
    .partnership-content p {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .agenda-preview {
        padding: 3rem 0;
    }
    
    .agenda-preview h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .agenda-preview p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    .events-preview {
        grid-template-columns: 1fr;
    }
    
    .event-preview-card {
        margin: 0 10px;
    }
    
    .event-preview-content h3 {
        font-size: 1.3rem;
    }
    
    .event-preview-content p {
        font-size: 0.95rem;
    }
    
    .event-preview-location {
        font-size: 0.85rem;
    }
    
    .event-preview-details span {
        font-size: 0.85rem;
    }
    
    .event-preview-content .btn {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        margin-bottom: 25px;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        padding: 0 15px;
    }
}

/* Agenda Preview Section */
.agenda-preview {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.agenda-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.agenda-preview p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.events-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-preview-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.event-preview-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    position: relative;
}

.event-preview-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-preview-date .month {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

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

.event-preview-location {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.event-preview-location i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.event-preview-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.event-preview-content p {
    margin-bottom: 1rem;
    color: #666;
    text-align: left;
    flex-grow: 1;
}

.event-preview-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.event-preview-time, .event-preview-price {
    display: flex;
    align-items: center;
}

.event-preview-time i, .event-preview-price i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.agenda-preview-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments for Agenda Preview */
@media (max-width: 768px) {
    .events-preview {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .events-preview {
        grid-template-columns: 1fr;
    }
    
    .event-preview-card {
        flex-direction: row;
    }
    
    .event-preview-date {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .event-preview-date .day {
        font-size: 1.5rem;
    }
    
    .event-preview-date .month {
        font-size: 0.8rem;
    }
} 