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

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-link:hover {
    color: #478da5;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-btn {
    background: #478da5;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #3a7491;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 21, 27, 0.8), rgba(71, 141, 165, 0.6));
    z-index: -1;
}

.hero-content {
    color: white;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Elsie', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Investment Strategies */
.strategies {
    padding: 100px 0;
    background: #f9f9f9;
}

.strategies-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Elsie', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0e151b;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.strategy-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.strategy-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #478da5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.strategy-image {
    height: 150px;
    overflow: hidden;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-image img {
    transform: scale(1.1);
}

.strategy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e151b;
    margin: 20px 20px 10px;
}

.strategy-description {
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #0e151b;
    color: white;
}

.section-title-white {
    font-family: 'Elsie', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #478da5;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Opportunities Section */
.opportunities {
    padding: 100px 0;
    background: white;
}

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

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 280px;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.image-grid img:nth-child(1) {
    grid-row: span 2;
}

.image-grid img:nth-child(4) {
    grid-row: span 2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

/* Trading Services */
.trading-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #bbc5d7, #8496a1);
}

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

.trading-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trading-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trading-subtitle {
    font-size: 16px;
    color: #0e151b;
    margin-bottom: 20px;
    opacity: 0.8;
}

.trading-title {
    font-family: 'Elsie', serif;
    font-size: 2.2rem;
    color: #0e151b;
    line-height: 1.3;
}

/* Financial Solutions */
.financial-solutions {
    padding: 100px 0;
    background: #0e151b;
}

.solutions-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 20px auto 0;
}

.solutions-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solutions-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.solutions-images img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(71, 141, 165, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.contact-logo img {
    width: 150px;
    height: auto;
}

.contact-title {
    font-family: 'Elsie', serif;
    font-size: 2rem;
    color: #0e151b;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    font-size: 16px;
    color: #333;
}

.contact-email {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-address {
    color: #666;
}

/* Footer */
.footer {
    background: #0e151b;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.footer-content a {
    color: #478da5;
    text-decoration: none;
}

.odoo-logo {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .opportunities-content,
    .trading-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 8px;
    }

    .image-grid img {
        height: 150px;
    }

    .solutions-images {
        grid-template-columns: 1fr;
    }
}