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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header - Side Navigation */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100vh;
            background: #000131;
            z-index: 1000;
            padding: 2rem 0;
            transform: translateX(-200px);
            transition: transform 0.3s ease;
        }

        .nav-container.active {
            transform: translateX(0);
        }

        .nav-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            background: #000131;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
        }

        .logo {
            text-align: center;
            color: #d9c07d;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 0 1rem 2rem;
            /*border-bottom: 1px solid rgba(201, 168, 118, 0.3);*/
            margin-bottom: 2rem;
        }

        .main-logo {
            text-align: center;
            color: #d9c07d;
            font-size: 1.2rem;
            font-weight: bold;
            /*padding: 0 1rem 2rem;*/
            /*border-bottom: 1px solid rgba(201, 168, 118, 0.3);*/
            /*margin-bottom: 2rem;*/
        }

        .main-text {
            text-align: center;
            color: #d9c07d;
            font-size: 1rem;
            padding: 0 1rem 0rem;
            margin-bottom: 0rem;
        }

        .main-text a {
            color: #d9c07d;
            text-decoration: underline;
        }

        .nav-links {
            list-style: none;
            padding: 0 1rem;
        }

        .nav-links li {
            margin-bottom: 1rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: rgba(201, 168, 118, 0.2);
            transform: translateX(5px);
        }

        /* Main Content Area */
        .main-content {
            margin-left: 0;
            transition: margin-left 0.3s ease;
        }

        .main-content.nav-open {
            margin-left: 250px;
        }

        /* Header Section */
        .header {
            display: flex;
            align-items: left;
            background: linear-gradient(0deg, #000131 50%, #f8f9ff 50%);            
        }

        /* Title Section */
        .title {
            width: 100%;
            padding: 1rem 2rem;
            background: #000131;
            font-size: 2.5rem;
            color: white;
            text-align: center;
        }
        /* Hero Section - Split Layout */
        .hero {
            min-height: 100vh;
            align-items: center;
            /*background: linear-gradient(45deg, #000131 50%, #f8f9ff 50%);*/
            background: #000131;
        }

        .hero-content {
            display: grid;                                                                                                                
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            gap: 4rem;
            align-items: center;
        }

        .hero-left {
            color: white;
            padding: 2rem;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-left p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-right {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,1,49,0.2);
            color: #333;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 1.5rem;
            background: #f8f9ff;
            border-radius: 10px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000131;
            margin-bottom: 0.5rem;
        }

        .cta-section {
            text-align: center;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            margin: 0.5rem;
        }

        .btn-primary {
            background: #000131;
            color: white;
        }

        .btn-primary:hover {
            background: #1a2547;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            color: #000131;
            border: 2px solid #000131;
        }

        .btn-secondary:hover {
            background: #000131;
            color: white;
            transform: translateY(-3px);
        }

        /* Features - Masonry Layout */
        .features {
            padding: 80px 2rem;
            background: #f8f9ff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #000131;
        }

        .features-masonry {
            max-width: 1200px;
            margin: 0 auto;
            columns: 3;
            column-gap: 2rem;
        }

        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,1,49,0.1);
            margin-bottom: 2rem;
            break-inside: avoid;
            transition: all 0.3s ease;
            border-left: 4px solid #c9a876;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,1,49,0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-item h3 {
            color: #000131;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-item a{
            color: #c9a876;
            text-decoration: none;
            font-weight: 400;
        }

        /* Markets - Cards in Row */
        .markets {
            padding: 80px 2rem;
            background: #000131;
            color: white;
        }

        .markets-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .markets-row {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: space-between;
        }

        .market-card {
            flex: 1;
            background: rgba(255,255,255,0.1);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201,168,118,0.3);
            text-align: center;
            transition: all 0.3s ease;
        }

        .market-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
            border-color: #c9a876;
        }

        .market-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #c9a876;
        }

        .market-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #c9a876;
        }

        /* Contact - Two Column */
        .contact {
            padding: 80px 2rem;
            background: linear-gradient(135deg, #1a2547 0%, #2d3e63 100%);
            color: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #c9a876;
        }

        .contact-info p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }

        .contact-details li::before {
            content: "→";
            color: #c9a876;
            font-weight: bold;
            margin-right: 1rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            flex: 1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #c9a876;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: #000131;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #c9a876;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #c9a876;
        }

        .footer-bottom {
            border-top: 1px solid rgba(201,168,118,0.3);
            padding-top: 2rem;
            opacity: 0.7;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                width: 100%;
                transform: translateX(-100%);
            }
            
            .main-content.nav-open {
                margin-left: 0;
            }

            .hero {
                background: #000131;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 2.5rem;
            }

            .features-masonry {
                columns: 1;
            }

            .markets-row {
                flex-direction: column;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .form-row {
                flex-direction: column;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slideshow Automation */
        * {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}