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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.cookie-popup p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    background: #6366f1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #5855eb;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #d1d5db;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #6366f1;
    font-size: 24px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #6366f1;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn {
    font-size: 16px;
    padding: 16px 32px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Investment Info Section */
.investment-info {
    padding: 60px 0;
    background: white;
}

.info-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Regulatory Section */
.regulatory {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.regulatory h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.regulatory > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.regulatory-item {
    text-align: center;
}

.regulatory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.regulatory-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.regulatory-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.why-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.services-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
}

.services-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.services-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.services-person img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.services-detail-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Investment Process Section */
.investment-process {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.investment-process h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
}

.investment-process p {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 600;
    color: #6366f1;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.testimonial p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: #1f2937;
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: #1f2937;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.contact-item p {
    color: white;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    color: #6366f1;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .regulatory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header Mobile */
    .header {
        padding: 15px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    /* Hero Mobile */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-content {
        margin-top: 80px;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    /* Sections Mobile */
    .about, .services, .regulatory, .testimonials, .investment-process {
        padding: 50px 0;
    }

    .why-choose {
        padding: 50px 0;
    }

    .investment-info, .contact {
        padding: 40px 0;
    }

    .about-content,
    .why-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .services-detail {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .regulatory-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .regulatory h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .regulatory > p {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .regulatory-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .regulatory-item p {
        font-size: 13px;
    }

    .regulatory-item img {
        height: 180px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial {
        padding: 25px;
    }

    .testimonial h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .testimonial p {
        font-size: 13px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Cookie Popup Mobile */
    .cookie-popup {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
        padding: 20px;
    }

    .cookie-popup h3 {
        font-size: 16px;
    }

    .cookie-popup p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header Extra Small */
    .header .container {
        gap: 12px;
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 13px;
    }

    /* Hero Extra Small */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-text h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* Sections Extra Small */
    .about, .services, .regulatory, .testimonials, .investment-process {
        padding: 40px 0;
    }

    .why-choose {
        padding: 40px 0;
    }

    .investment-info, .contact {
        padding: 30px 0;
    }

    .about-text h2,
    .services-text h2,
    .regulatory h2,
    .testimonials h2,
    .investment-process h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .why-text h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .about-text p,
    .services-text p,
    .services-detail-text p,
    .investment-process p {
        font-size: 14px;
    }

    .info-text p {
        font-size: 14px;
    }

    .regulatory > p {
        font-size: 14px;
    }

    .regulatory-item img {
        height: 160px;
    }

    .testimonial {
        padding: 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
    }

    .form-group textarea {
        height: 100px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p,
    .footer-links a {
        font-size: 12px;
    }

    .cookie-popup {
        padding: 16px;
    }

    .cookie-popup h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .cookie-popup p {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cookie-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 70px 0 40px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .about, .services, .regulatory, .testimonials, .investment-process {
        padding: 40px 0;
    }
   
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-text h2 {
        font-size: 24px;
    }

    .about-text h2,
    .services-text h2,
    .regulatory h2,
    .testimonials h2,
    .investment-process h2 {
        font-size: 20px;
    }

    .why-text h2 {
        font-size: 18px;
    }
}