        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body, #app {
            height: 100%;
            width: 100%;
        }

        body {
            font-family: 'Slabo 27px', serif;
            background-color: #a5a519;
            color: #000000;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .accent-color { color: #FCB454; }
        .accent-bg { background-color: #d2913c; }
        .dark-bg { background-color: #000000; }
        .light-bg { background-color: #F3F3E0; }

        /* Toast Notification */
        .toast-notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background-color: #4CAF50;
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            z-index: 9999;
            font-family: 'Slabo 27px', serif;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            animation: slideInRight 0.3s ease;
            max-width: 350px;
        }

        .toast-notification.error {
            background-color: #d32f2f;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Header Styles */
        header {
            background-color: #e1ab46;
            border-top: 3px solid #000000;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            border-bottom: 1px solid #000000;
        }

        .logo-section {
            font-size: 24px;
            font-weight: bold;
            color: #df0e0e;
        }

        .logo-section span {
            color: #df0e0e;
        }

        .logo-tagline {
            font-size: 12px;
            color: #20e51d;
            margin-top: 4px;
        }

        .header-right {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .search-bar {
            display: flex;
            align-items: center;
            border: 2px solid #000000;
            padding: 8px 12px;
            border-radius: 4px;
        }

        .search-bar input {
            border: none;
            outline: none;
            background: transparent;
            font-family: 'Slabo 27px', serif;
            width: 200px;
            padding: 4px;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .user-menu {
            position: relative;
        }

        .user-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #FCB454;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            color: #000000;
            transition: transform 0.3s ease;
            font-size: 18px;
        }

        .user-icon:hover {
            transform: scale(1.1);
        }

        .user-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background-color: white;
            border: 2px solid #000000;
            border-radius: 4px;
            min-width: 180px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1001;
        }

        .user-dropdown.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .user-name {
            padding: 12px 15px;
            border-bottom: 2px solid #FCB454;
            font-weight: bold;
            color: #FCB454;
            text-align: center;
        }

        .user-dropdown-item {
            padding: 12px 15px;
            border-bottom: 1px solid #F0F0F0;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-family: 'Slabo 27px', serif;
            font-size: 14px;
            color: #000000;
        }

        .user-dropdown-item:last-child {
            border-bottom: none;
        }

        .user-dropdown-item:hover {
            background-color: #FCB454;
            color: #000000;
        }

        .header-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 15px 40px;
        }

        .header-nav a {
            text-decoration: none;
            color: #000000;
            font-size: 14px;
            font-weight: bold;
            position: relative;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FCB454;
            transition: width 0.3s ease;
        }

        .header-nav a:hover {
            color: #FCB454;
        }

        .header-nav a:hover::after {
            width: 100%;
        }

        /* Main Content */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Hero Section */
        .hero {
            height: 700px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            position: relative;
        }

        .hero-left {
            background-color: #F3F3E0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 50px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 550px;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 20px;
            animation: slideUp 0.8s ease 0.2s backwards;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: #333;
            margin-bottom: 30px;
            animation: slideUp 0.8s ease 0.4s backwards;
            line-height: 1.6;
        }


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}
  .hero::after {
    content: '';
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5); /* dark overlay */
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    min-height: 4rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 0.15em solid #fff;
  }

  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .hero-buttons button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
    transition: 0.3s;
  }

  .btn-primary {
    background-color: #ff7f50;
    color: white;
  }

  .btn-primary:hover {
    background-color: #ff6333;
  }

  .btn-secondary {
    background-color: #fff;
    color: #333;
  }

  .btn-secondary:hover {
    background-color: #f0f0f0;
  }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: slideUp 0.8s ease 0.6s backwards;
        }

        .btn {
            padding: 14px 30px;
            font-family: 'Slabo 27px', serif;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: #FCB454;
            color: #000000;
        }

        .btn-primary:hover {
            background-color: #E5A340;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background-color: transparent;
            color: #000000;
            border: 2px solid #000000;
        }

        .btn-secondary:hover {
            background-color: #000000;
            color: #F3F3E0;
            transform: translateY(-2px);
        }

        .hero-right {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomIn 1s ease backwards;
        }

        @keyframes zoomIn {
            from {
                transform: scale(1.1);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Section Styles */
        section {
            padding: 80px 40px;
            position: relative;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            display: inline-block;
        }

        .section-title .accent {
            color: #FCB454;
        }

        .section-divider {
            width: 60px;
            height: 4px;
            background-color: #FCB454;
            margin: 20px auto 50px;
        }

        /* Course Cards */
        .courses-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
        }

        .course-card {
            min-width: 320px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #F3F3E0;
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
            border-color: #FCB454;
        }

        .course-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #FCB454 0%, #F3A930 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            object-fit: cover;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .course-content {
            padding: 25px;
        }

        .course-category {
            color: #FCB454;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .course-title {
            font-size: 22px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 12px;
        }

        .course-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
            margin-bottom: 15px;
            border-top: 1px solid #F0F0F0;
            padding-top: 10px;
        }

        .btn-view {
            width: 100%;
            background-color: #FCB454;
            color: #000000;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Slabo 27px', serif;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn-view:hover {
            background-color: #E5A340;
        }

        /* Resources Grid */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .resource-card {
            background-color: white;
            border: 2px solid #000000;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .resource-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .resource-icon {
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            object-fit: cover;
        }

        .resource-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .resource-info {
            padding: 20px;
        }

        .resource-title {
            font-size: 18px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 8px;
        }

        .resource-type {
            font-size: 12px;
            color: #FCB454;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .resource-cta {
            width: 100%;
            background-color: transparent;
            color: #000000;
            border: 2px solid #000000;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Slabo 27px', serif;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .resource-cta:hover {
            background-color: #FCB454;
            border-color: #FCB454;
            color: #000000;
        }

        /* Blog Section */
        .blog-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .blog-content h3 {
            font-size: 32px;
            color: #FCB454;
            margin-bottom: 20px;
        }

        .blog-article {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
        }

        .blog-quote {
            font-style: italic;
            font-size: 18px;
            color: #000000;
            border-left: 4px solid #FCB454;
            padding-left: 20px;
            margin: 30px 0;
            font-weight: 600;
        }

        .blog-image {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            object-fit: cover;
        }

        /* Testimonials */
        .testimonials-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .testimonial-card {
            width: 300px;
            background-color: white;
            border-radius: 50%;
            padding: 40px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            aspect-ratio: 1;
            position: relative;
            border: 3px solid #F3F3E0;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(252, 180, 84, 0.2);
            border-color: #FCB454;
        }

        .testimonial-text {
            font-size: 16px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: #000000;
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 12px;
            color: #FCB454;
            font-weight: bold;
        }

        /* Events Timeline */
        .events-timeline {
            position: relative;
            padding: 40px 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: #FCB454;
            transform: translateX(-50%);
        }

        .event-item {
            margin-bottom: 40px;
            position: relative;
        }

        .event-item:nth-child(odd) .event-content {
            margin-left: 0;
            margin-right: 52%;
            text-align: right;
        }

        .event-item:nth-child(even) .event-content {
            margin-left: 52%;
            margin-right: 0;
            text-align: left;
        }

        .event-dot {
            position: absolute;
            left: 50%;
            top: 0;
            width: 16px;
            height: 16px;
            background-color: #FCB454;
            border: 3px solid #F3F3E0;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .event-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .event-content:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .event-date {
            color: #FCB454;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .event-title {
            font-size: 20px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 8px;
        }

        .event-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Newsletter */
        .newsletter {
            background-color: #000000;
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-radius: 8px;
        }

        .newsletter h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .newsletter p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 12px 15px;
            border: 2px solid #FCB454;
            border-radius: 4px;
            background-color: transparent;
            color: white;
            font-family: 'Slabo 27px', serif;
            font-size: 14px;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 12px rgba(252, 180, 84, 0.5);
        }

        .newsletter-btn {
            padding: 12px 30px;
            background-color: #FCB454;
            color: #000000;
            border: none;
            border-radius: 4px;
            font-family: 'Slabo 27px', serif;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #E5A340;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: white;
            padding: 60px 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #FCB454;
            font-weight: bold;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-section a:hover {
            color: #FCB454;
        }

        .footer-divider {
            width: 100%;
            height: 1px;
            background-color: #FCB454;
            margin: 30px 0;
        }

        .footer-bottom {
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #FCB454;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            cursor: pointer;
            transition: transform 0.3s ease;
            font-size: 16px;
        }

        .social-icon:hover {
            transform: scale(1.15);
        }

        /* Auth Modal */
        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            padding: 20px;
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-container {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.3s ease;
            position: relative;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-title {
            font-size: 28px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 14px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 5px;
        }

        .form-input {
            padding: 12px;
            border: 2px solid #E0E0E0;
            border-radius: 4px;
            font-family: 'Slabo 27px', serif;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #FCB454;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .auth-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-family: 'Slabo 27px', serif;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .auth-btn-primary {
            background-color: #FCB454;
            color: #000000;
        }

        .auth-btn-primary:hover {
            background-color: #E5A340;
        }

        .auth-btn-secondary {
            background-color: #F3F3E0;
            color: #000000;
            border: 2px solid #000000;
        }

        .auth-btn-secondary:hover {
            background-color: #000000;
            color: #F3F3E0;
        }

        .auth-toggle {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-top: 15px;
        }

        .auth-toggle a {
            color: #FCB454;
            cursor: pointer;
            text-decoration: underline;
        }

        .close-auth {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-auth:hover {
            color: #000000;
        }

        .auth-success {
            color: #4CAF50;
            font-size: 14px;
            margin: 10px 0;
            text-align: center;
            display: none;
            background-color: #E8F5E9;
            padding: 10px;
            border-radius: 4px;
            border: 1px solid #4CAF50;
        }

        .auth-success.show {
            display: block;
        }

        .auth-error {
            color: #d32f2f;
            font-size: 14px;
            margin: 10px 0;
            text-align: center;
            display: none;
            background-color: #FFEBEE;
            padding: 10px;
            border-radius: 4px;
            border: 1px solid #d32f2f;
        }

        .auth-error.show {
            display: block;
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background-color: white;
            border-radius: 8px;
            max-width: 700px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideDown 0.3s ease;
            position: relative;
        }

        .modal-header {
            padding: 30px;
            border-bottom: 2px solid #FCB454;
            position: sticky;
            top: 0;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 28px;
            color: #000000;
            margin: 0;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
        }

        .close-modal:hover {
            color: #000000;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-body h3 {
            font-size: 24px;
            color: #FCB454;
            margin-bottom: 15px;
        }

        .modal-body h4 {
            font-size: 20px;
            color: #000000;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .modal-body p {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .modal-body ul, .modal-body ol {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .modal-body li {
            margin-bottom: 10px;
        }

        .modal-body strong {
            color: #000000;
        }

        .modal-footer {
            padding: 20px 30px;
            border-top: 2px solid #F3F3E0;
            display: flex;
            gap: 10px;
        }

        .modal-footer button {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-family: 'Slabo 27px', serif;
            font-weight: bold;
            cursor: pointer;
            font-size: 14px;
        }

        .modal-footer .btn-primary {
            background-color: #FCB454;
            color: #000000;
        }

        .modal-footer .btn-secondary {
            background-color: #F3F3E0;
            color: #000000;
            border: 2px solid #000000;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                height: auto;
            }

            .hero-left {
                padding: 40px 20px;
            }

            .hero-right {
                min-height: 400px;
            }

            .header-nav {
                flex-wrap: wrap;
                gap: 20px;
            }

            .header-top {
                flex-direction: column;
                gap: 15px;
            }

            .header-right {
                flex-direction: column;
                width: 100%;
            }

            .search-bar {
                width: 100%;
            }

            .search-bar input {
                width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .blog-section {
                grid-template-columns: 1fr;
            }

            .timeline-line {
                display: none;
            }

            .event-item:nth-child(odd) .event-content,
            .event-item:nth-child(even) .event-content {
                margin-left: 0;
                margin-right: 0;
                text-align: left;
            }

            .event-dot {
                display: none;
            }

            section {
                padding: 50px 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .modal-body {
                padding: 20px;
            }

            .modal-header {
                padding: 20px;
            }

            .modal-footer {
                padding: 15px 20px;
                flex-direction: column;
            }
        }
