 :root {
     --navy: #001F3F;
     --gold: #D4AF37;
     --light-gold: #f0d99d;
     --dark-gold: #b8860b;
     --light-gray: #f5f7fa;
     --dark-gray: #333;
     --white: #ffffff;
     --transition: all 0.4s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     line-height: 1.6;
     color: var(--dark-gray);
     overflow-x: hidden;
     background-color: var(--white);
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Playfair Display', serif;
     font-weight: 700;
     color: var(--navy);
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .btn {
     display: inline-block;
     background: var(--gold);
     color: var(--navy);
     padding: 12px 28px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     text-decoration: none;
     font-weight: 600;
     transition: var(--transition);
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 14px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .btn:hover {
     background: var(--dark-gold);
     transform: translateY(-3px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--gold);
     color: var(--gold);
     margin-left: 15px;
 }

 .btn-outline:hover {
     background: var(--gold);
     color: var(--navy);
 }

 section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
 }

 .section-title h2 {
     font-size: 2.5rem;
     display: inline-block;
     padding-bottom: 15px;
     position: relative;
 }

 .section-title h2:after {
     content: '';
     position: absolute;
     width: 80px;
     height: 3px;
     background: var(--gold);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
 }

 /* Header & Navigation */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(0, 31, 63, 0.95);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     transition: var(--transition);
 }

 header.scrolled {
     padding: 10px 0;
     background: rgba(0, 31, 63, 0.98);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo h1 {
     color: var(--gold);
     font-size: 1.8rem;
     margin-left: 10px;
 }

 .logo-icon {
     color: var(--gold);
     font-size: 2rem;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 30px;
 }

 .nav-links a {
     color: var(--white);
     text-decoration: none;
     font-weight: 500;
     font-size: 1rem;
     transition: var(--transition);
     position: relative;
 }

 .nav-links a:hover {
     color: var(--gold);
 }

 .nav-links a:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--gold);
     left: 0;
     bottom: -5px;
     transition: var(--transition);
 }

 .nav-links a:hover:after {
     width: 100%;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--white);
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Hero Carousel */
 .hero-carousel {
     height: 100vh;
     position: relative;
     overflow: hidden;
 }

 .carousel-inner {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .carousel-item {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1.2s ease-in-out;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .carousel-item.active {
     opacity: 1;
     z-index: 1;
 }

 .carousel-content {
     max-width: 800px;
     padding: 0 20px;
     color: var(--white);
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

 .carousel-content h1 {
     font-size: 4.5rem;
     margin-bottom: 20px;
     animation: fadeInDown 1s ease;
     color: var(--gold);
     text-transform: uppercase;
     letter-spacing: 3px;
     line-height: 1.2;
 }

 .carousel-content p {
     font-size: 1.8rem;
     margin-bottom: 40px;
     animation: fadeInUp 1s ease 0.2s both;
 }

 .hero-btns {
     animation: fadeInUp 1s ease 0.4s both;
 }

 .carousel-indicators {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     z-index: 10;
 }

 .indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     margin: 0 8px;
     cursor: pointer;
     transition: var(--transition);
 }

 .indicator.active {
     background: var(--gold);
     transform: scale(1.3);
 }

 /* Back to Top Button Styles */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: #D4AF37;
     color: #001F3F;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     cursor: pointer;
     z-index: 999;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.4s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     border: 2px solid #001F3F;
 }

 .back-to-top.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .back-to-top:hover {
     background: #001F3F;
     color: #D4AF37;
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
 }

 .gold-power {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/refining-bg') center/cover no-repeat;
     color: var(--white);
 }

 .elite-circle {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://hips.hearstapps.com/hmg-prod/images/gettyimages-649127212-1529686674.jpg?crop=1.00xw:0.898xh;0.00160xw,0.0639xh&resize=1920:*') center/cover no-repeat;
     color: var(--white);
 }

 .image-content {
     max-width: 800px;
     margin: 0 auto;
     padding: 40px;
     background-image: url("images/gold-elite.jpg");
     background-position: center;
     background-size: cover;
     border-radius: 8px;
     border: 2px solid var(--gold);
 }

 .image-title {
     font-size: 3.5rem;
     margin-bottom: 30px;
     color: var(--gold);
     text-transform: uppercase;
     line-height: 1.2;
 }

 .image-subtitle {
     font-size: 1.5rem;
     font-weight: 300;
     line-height: 1.4;
 }


 /* About Section */
 .about {
     background-color: var(--light-gray);
 }

 .about-content {
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .about-text {
     flex: 1;
 }

 .about-img {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .about-img img {
     width: 100%;
     height: auto;
     display: block;
     transition: var(--transition);
 }

 .about-img:hover img {
     transform: scale(1.05);
 }

 .mission-vision {
     display: flex;
     gap: 30px;
     margin-top: 40px;
 }

 .mission,
 .vision {
     flex: 1;
     background: var(--white);
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
 }

 .mission:hover,
 .vision:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .mission h3,
 .vision h3 {
     margin-bottom: 15px;
     color: var(--gold);
 }

 /* Services Section */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: 8px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     border-top: 4px solid var(--gold);
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 31, 63, 0.8);
     opacity: 0;
     transition: var(--transition);
     z-index: 1;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-card:hover::before {
     opacity: 1;
 }

 .service-img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 6px;
     margin-bottom: 20px;
     transition: var(--transition);
 }

 .service-card:hover .service-img {
     transform: scale(1.05);
 }

 .service-card h3 {
     margin-bottom: 15px;
     font-size: 1.5rem;
     position: relative;
     z-index: 2;
 }

 .service-card p {
     position: relative;
     z-index: 2;
 }

 /* Why Choose Us */
 .why-choose-us {
     background: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
     color: var(--white);
 }

 .why-choose-us .section-title h2 {
     color: var(--white);
 }

 .features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .feature {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 40px 30px;
     border-radius: 8px;
     text-align: center;
     transition: var(--transition);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .feature:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.15);
 }

 .feature-icon {
     font-size: 2.5rem;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .feature h3 {
     color: var(--white);
     margin-bottom: 15px;
 }

 /* Process Section */
 .process {
     background-color: var(--light-gray);
 }

 .process-steps {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
     position: relative;
 }

 .process-steps::before {
     content: '';
     position: absolute;
     top: 40px;
     left: 50px;
     right: 50px;
     height: 3px;
     background: var(--gold);
     z-index: 0;
 }

 .step {
     flex: 1;
     min-width: 250px;
     max-width: 300px;
     text-align: center;
     position: relative;
     z-index: 1;
     padding: 20px;
     background: var(--white);
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
 }

 .step:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: var(--gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--navy);
 }

 .step h3 {
     margin-bottom: 15px;
     color: var(--gold);
 }

 /* Testimonials */
 .testimonials {
     background: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('https://images.unsplash.com/photo-1565373679108-7b39c6d0b340?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
     color: var(--white);
 }

 .testimonials .section-title h2 {
     color: var(--white);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 40px 30px;
     border-radius: 8px;
     transition: var(--transition);
     border: 1px solid rgba(255, 255, 255, 0.2);
     position: relative;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.15);
 }

 .quote-icon {
     position: absolute;
     top: 20px;
     left: 20px;
     font-size: 2.5rem;
     color: rgba(212, 175, 55, 0.3);
 }

 .testimonial-content {
     margin-top: 40px;
     margin-bottom: 30px;
     font-style: italic;
     font-size: 1.1rem;
     line-height: 1.8;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
 }

 .author-img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     overflow: hidden;
     margin-right: 15px;
     border: 2px solid var(--gold);
 }

 .author-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .author-info h4 {
     color: var(--gold);
     margin-bottom: 5px;
     font-size: 1.2rem;
 }

 .author-info p {
     color: var(--light-gold);
     font-size: 0.9rem;
 }

 /* Certifications Section */
 .certifications {
     background-color: var(--light-gray);
 }

 .certifications-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     justify-items: center;
 }

 .certification-item {
     background: var(--white);
     border-radius: 8px;
     padding: 30px 20px;
     text-align: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     width: 100%;
     max-width: 250px;
 }

 .certification-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .certification-icon {
     font-size: 3.5rem;
     color: var(--gold);
     margin-bottom: 20px;
 }

 .certification-item h3 {
     color: var(--navy);
     margin-bottom: 10px;
 }

 .certification-item p {
     color: var(--dark-gray);
     font-size: 0.9rem;
 }

 /* Gallery */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 15px;
 }

 .gallery-item {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     height: 250px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 31, 63, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: var(--transition);
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-overlay i {
     color: var(--white);
     font-size: 2rem;
 }

 /* Agreement Section */
 .agreement {
     background-color: var(--light-gray);
     padding: 80px 0;
 }

 .agreement-container {
     max-width: 1000px;
     margin: 0 auto;
     background: var(--white);
     padding: 50px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .agreement-header {
     text-align: center;
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 2px solid var(--gold);
 }

 .agreement-title {
     font-size: 2.2rem;
     color: var(--navy);
     margin-bottom: 10px;
 }

 .agreement-subtitle {
     color: var(--dark-gray);
     font-size: 1.1rem;
 }

 .agreement-content {
     margin-bottom: 40px;
 }

 .agreement-section {
     margin-bottom: 30px;
 }

 .agreement-section h3 {
     color: var(--navy);
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: 1px solid #eee;
 }

 .agreement-section p {
     margin-bottom: 15px;
     line-height: 1.6;
 }

 .agreement-section ol,
 .agreement-section ul {
     padding-left: 20px;
     margin-bottom: 20px;
 }

 .agreement-section li {
     margin-bottom: 10px;
     line-height: 1.6;
 }

 .signature-area {
     margin-top: 50px;
     padding-top: 30px;
     border-top: 2px solid #eee;
 }

 .signature-line {
     display: flex;
     justify-content: space-between;
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .signature-box {
     width: 45%;
     min-width: 250px;
     margin-bottom: 20px;
 }

 .signature-label {
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--navy);
 }

 .signature-field {
     border-bottom: 1px solid #ccc;
     padding: 10px 0;
     min-height: 40px;
 }

 .agreement-note {
     font-style: italic;
     text-align: center;
     margin-top: 30px;
     color: var(--dark-gray);
 }

 /* Business Bridge Section */
 .business-bridge {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516156008625-3a9d6067fab5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
     color: var(--white);
     padding: 100px 0;
     text-align: center;
 }

 .bridge-content {
     max-width: 900px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .bridge-heading {
     font-size: 2.8rem;
     margin-bottom: 30px;
     color: var(--gold);
 }

 .bridge-text {
     font-size: 1.2rem;
     line-height: 1.8;
     margin-bottom: 40px;
     text-align: left;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .bridge-cta {
     margin-top: 40px;
 }

 /* Contact */
 .contact {
     background-color: var(--light-gray);
 }

 .contact-wrapper {
     display: flex;
     gap: 40px;
 }

 .contact-info {
     flex: 1;
 }

 .contact-details {
     margin-top: 30px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
 }

 .contact-icon {
     font-size: 1.5rem;
     color: var(--gold);
     margin-right: 15px;
     min-width: 30px;
 }

 .contact-text h4 {
     margin-bottom: 5px;
     font-size: 1.2rem;
 }

 .contact-form {
     flex: 1;
     background: var(--white);
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-family: 'Montserrat', sans-serif;
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     border-color: var(--gold);
     outline: none;
 }

 /* Footer */
 footer {
     background: var(--navy);
     color: var(--white);
     padding: 60px 0 30px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }

 .footer-logo {
     margin-bottom: 20px;
 }

 .footer-logo h3 {
     color: var(--gold);
     font-size: 1.8rem;
 }

 .footer-links h4,
 .footer-newsletter h4 {
     color: var(--gold);
     margin-bottom: 20px;
     font-size: 1.3rem;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--gold);
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white);
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--gold);
     transform: translateY(-5px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Animations */
 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .fade-in.appear {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .process-steps::before {
         display: none;
     }

     .step {
         margin-bottom: 30px;
     }
 }

 @media (max-width: 992px) {

     .about-content,
     .mission-vision,
     .contact-wrapper {
         flex-direction: column;
     }

     .carousel-content h1 {
         font-size: 3rem;
     }

     .carousel-content p {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 768px) {
     .mobile-menu-btn {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 80px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 80px);
         background: var(--navy);
         flex-direction: column;
         align-items: center;
         padding-top: 40px;
         transition: var(--transition);
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links li {
         margin: 20px 0;
     }

     .carousel-content h1 {
         font-size: 2.5rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     section {
         padding: 60px 0;
     }

     .carousel-content h1 {
         font-size: 2rem;
     }

     .carousel-content p {
         font-size: 1.1rem;
     }

     .btn {
         display: block;
         width: 100%;
         margin-bottom: 15px;
     }

     .btn-outline {
         margin-left: 0;
     }

     .hero-btns {
         display: flex;
         flex-direction: column;
         gap: 15px;
     }
 }

 .faq {
     background-color: var(--light-gray);
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     background: var(--white);
     border-radius: 8px;
     margin-bottom: 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     transition: var(--transition);
 }

 .faq-item:hover {
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .faq-question {
     padding: 20px 25px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: var(--navy);
     color: var(--white);
     transition: var(--transition);
 }

 .faq-question:hover {
     background: #00284f;
 }

 .faq-question i {
     transition: var(--transition);
 }

 .faq-answer {
     padding: 0 25px;
     max-height: 0;
     overflow: hidden;
     transition: var(--transition);
 }

 .faq-item.active .faq-answer {
     padding: 20px 25px;
     max-height: 500px;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 /* Legal Section Styles */
 .legal {
     background: var(--navy);
     color: var(--light-gold);
     padding: 60px 0;
 }

 .legal-container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .legal-tabs {
     display: flex;
     margin-bottom: 30px;
     border-bottom: 2px solid var(--gold);
 }

 .legal-tab {
     padding: 12px 25px;
     cursor: pointer;
     font-weight: 600;
     transition: var(--transition);
     border-bottom: 3px solid transparent;
     margin-bottom: -2px;
 }

 .legal-tab.active {
     color: var(--gold);
     border-bottom: 3px solid var(--gold);
 }

 .legal-tab:hover:not(.active) {
     color: var(--light-gold);
 }

 .legal-content {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     padding: 30px;
     max-height: 400px;
     overflow-y: auto;
 }

 .legal-section {
     display: none;
 }

 .legal-section.active {
     display: block;
     animation: fadeIn 0.5s ease;
 }

 .legal-section h3 {
     color: var(--gold);
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 1px solid rgba(212, 175, 55, 0.3);
 }

 .legal-section h4 {
     color: var(--light-gold);
     margin: 25px 0 15px;
 }

 .legal-section p {
     margin-bottom: 15px;
     line-height: 1.8;
 }

 .legal-section ul {
     padding-left: 20px;
     margin-bottom: 20px;
 }

 .legal-section li {
     margin-bottom: 10px;
     position: relative;
     padding-left: 15px;
 }

 .legal-section li:before {
     content: "•";
     color: var(--gold);
     position: absolute;
     left: 0;
     font-size: 1.2rem;
     line-height: 1;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Scrollbar styling for legal content */
 .legal-content::-webkit-scrollbar {
     width: 8px;
 }

 .legal-content::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.1);
     border-radius: 4px;
 }

 .legal-content::-webkit-scrollbar-thumb {
     background: var(--gold);
     border-radius: 4px;
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .legal-tabs {
         flex-direction: column;
     }

     .legal-tab {
         border-bottom: 1px solid rgba(212, 175, 55, 0.3);
         margin-bottom: 0;
     }

     .legal-content {
         max-height: 500px;
     }
 }