 body {
     background-color: #f8f9fa;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .form-container {
     background-color: #FFD700;
     border-radius: 25px;
     padding: 25px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
     margin: 30px auto;
 }

 .form-inner {
     background-color: white;
     border-radius: 10px;
     padding: 25px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
 }

 .section-title {
     color: #4a4a4a;
     border-bottom: 2px solid #FFD700;
     padding-bottom: 10px;
     margin-bottom: 20px;
     font-weight: 600;
     font-size: 1.5rem;
 }

 .category-columns {
     column-count: 2;
     column-gap: 30px;
 }

 @media (max-width: 768px) {
     .category-columns {
         column-count: 1;
     }
 }

 .form-check {
     margin-bottom: 10px;
     break-inside: avoid;
 }

 .file-upload {
     border: 2px dashed #ccc;
     border-radius: 10px;
     padding: 20px;
     text-align: center;
     margin-bottom: 20px;
     background-color: #f8f9fa;
     transition: all 0.3s;
 }

 .file-upload:hover {
     border-color: #FFD700;
     background-color: #fffaf0;
 }

 .file-preview {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 20px;
 }

 .preview-item {
     width: 100px;
     height: 100px;
     border-radius: 8px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .preview-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .preview-item .remove-btn {
     position: absolute;
     top: 5px;
     right: 5px;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 50%;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
 }

 .btn-submit {
     background-color: #4a4a4a;
     color: white;
     padding: 12px 30px;
     border: none;
     border-radius: 30px;
     font-weight: 600;
     margin-top: 20px;
     transition: all 0.3s;
 }

 .btn-submit:hover {
     background-color: #FFD700;
     color: #4a4a4a;
     transform: translateY(-2px);
 }

 .terms-text {
     height: 120px;
     overflow-y: auto;
     padding: 15px;
     border: 1px solid #eee;
     border-radius: 5px;
     background-color: #f8f9fa;
     margin-bottom: 15px;
 }

 .showcase-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .showcase-card {
     position: relative;
     overflow: hidden;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .showcase-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 .showcase-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .showcase-card:hover img {
     transform: scale(1.05);
 }

 .main-showcase {
     height: 400px;
 }

 .main-showcase img {
     height: 100%;
     object-fit: cover;
 }

 .showcase-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 2rem;
     color: white;
 }

 .lazy {
     opacity: 0;
     transition: opacity 0.3s;
 }

 .lazy.loaded {
     opacity: 1;
 }

 @media (max-width: 992px) {
     .main-showcase {
         height: 350px;
     }
 }

 @media (max-width: 768px) {
     .main-showcase {
         height: 300px;
     }

     .display-4 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 576px) {
     .main-showcase {
         height: 250px;
     }

     .showcase-overlay {
         padding: 1rem;
     }

     .showcase-overlay h3 {
         font-size: 1.2rem;
     }
 }

 .form-title {
     background-color: #FFD700;
     padding: 20px;
 }

 .form-check-input {
     width: 1.2em;
     height: 1.2em;
     margin-top: 0.15em;
     border: 2px solid #e7d258 !important;
     background-color: white;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .form-check-input:checked {
     background-color: black !important;
     border-color: black !important;
 }

 .form-check-input:focus {
     box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
 }

 .form-check-input:checked::before {
     color: white;
 }


 .form-check-input[type="checkbox"]:checked {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
 }

 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: 0.5s;
     z-index: 1000;
 }

 .navbar.scrolled {
     background: rgba(255, 255, 255, 0.95);
     padding: 15px 5%;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar.scrolled .logo,
 .navbar.scrolled .nav-links a {
     color: #000;
 }

 .logo {
     font-size: 28px;
     font-weight: 700;
     color: #fff;
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: 0.5s;
 }

 .logo i {
     margin-right: 10px;
     color: #FFD700;
     font-size: 32px;
     transition: 0.5s;
 }

 .navbar.scrolled .logo i {
     color: #000;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin: 0 15px;
 }

 .nav-links a {
     color: #000;
     text-decoration: none;
     font-weight: 500;
     font-size: 18px;
     transition: 0.3s;
     position: relative;
     padding: 5px 0;
 }

 .nav-links a:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: #FFD700;
     transition: width 0.3s ease;
 }

 .nav-links a:hover:after {
     width: 100%;
 }

 .navbar.scrolled .nav-links a:hover:after {
     background-color: #000;
 }

 .hamburger {
     display: none;
     cursor: pointer;
 }

 .hamburger div {
     width: 25px;
     height: 3px;
     background: #000;
     margin: 5px;
     transition: 0.3s;
 }

 .navbar.scrolled .hamburger div {
     background: #000;
 }



 .hero-content {
     max-width: 900px;
     padding: 0 20px;
     z-index: 1;
     opacity: 0;
     transform: translateY(50px);
     animation: fadeUp 1s ease forwards 0.5s;
 }



 .btn-hero {
     display: inline-block;
     padding: 15px 40px;
     background: #FFD700;
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.2rem;
     transition: 0.3s;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .btn-hero:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
     background: #fff;
     color: #000;
 }


 .floating-elements {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     overflow: hidden;
 }

 .floating-element {
     position: absolute;
     background: rgba(255, 215, 0, 0.2);
     border-radius: 50%;
     animation: float 15s linear infinite;
 }


 @keyframes fadeUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes float {
     0% {
         transform: translateY(100vh) rotate(0deg);
         opacity: 1;
     }

     100% {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
     }
 }


 @media screen and (max-width: 992px) {
     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         height: 100vh;
         width: 250px;
         background: rgba(255, 255, 255, 0.95);
         flex-direction: column;
         align-items: center;
         justify-content: center;
         transition: right 0.5s ease;
         box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links li {
         margin: 20px 0;
     }

     .nav-links a {
         color: #000;
         font-size: 20px;
     }

     .hamburger {
         display: block;
         z-index: 1001;
     }

     .hamburger.active div:nth-child(1) {
         transform: rotate(-45deg) translate(-5px, 6px);
     }

     .hamburger.active div:nth-child(2) {
         opacity: 0;
     }

     .hamburger.active div:nth-child(3) {
         transform: rotate(45deg) translate(-5px, -6px);
     }

     .hero-content h1 {
         font-size: 3rem;
     }

     .hero-content p {
         font-size: 1.2rem;
     }
 }

 @media screen and (max-width: 576px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-content p {
         font-size: 1rem;
     }

     .btn-hero {
         padding: 12px 30px;
         font-size: 1rem;
     }
 }

 .video-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

 .video-container {
     position: relative;
     overflow: hidden;
     aspect-ratio: 16/9;
     background: #000;
 }

 .video-player {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .video-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background: rgba(0, 0, 0, 0.5);
     transition: opacity 0.3s ease;
     cursor: pointer;
     z-index: 2;
 }

 .video-overlay.hidden {
     opacity: 0;
     pointer-events: none;
 }

 .play-btn {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: rgba(255, 215, 0, 0.9);
     border: none;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #000;
     font-size: 24px;
     transition: all 0.3s ease;
     animation: pulse 2s infinite;
     cursor: pointer;
 }

 .play-btn:hover {
     transform: scale(1.1);
     background: #FFD700;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
     }
 }

 @media (max-width: 768px) {
     .play-btn {
         width: 60px;
         height: 60px;
         font-size: 18px;
     }

     .display-4 {
         font-size: 2.5rem;
     }
 }