/* Base Styling */
:root {
    --color-primary: #007bff; /* Bright Blue */
    --color-secondary: #00bfff; /* Lighter Blue */
    --color-dark: #1a1a1a;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-light: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--color-black); /* Core background is black */
    color: var(--color-text-light);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

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

/* --- Header Styling --- */
header {
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-dark);
    padding: 25px 0;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.site-logo img {
    height: 200px; /* LOGO HEIGHT: 200px */
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.5));
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li a {
    color: var(--color-text-light);
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
nav ul li a:hover {
    color: var(--color-primary);
}

/* --- Hero Section Styling --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh; /* FIX: Reduced height to minimize gap after header */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/abstract-investment-background.jpg') no-repeat center center/cover;
    color: var(--color-white);
}
.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--color-secondary);
}
.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

/* --- Content/Feature Card Styles (NEW ADDITIONS) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    padding: 25px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s;
}
.benefit-card:hover {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}
.benefit-card i {
    font-size: 2em;
    color: var(--color-secondary);
    margin-bottom: 10px;
}
.benefit-card h4 {
    color: var(--color-white);
    margin-bottom: 5px;
}

/* --- Utility Styles for Legal Pages --- */
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--color-white);
}

.page-header p {
    font-size: 1.1em;
    color: var(--color-secondary);
}
.section h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}
.section h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
}
.section ul {
    margin-left: 20px;
    list-style: disc;
}
.section li {
    margin-bottom: 10px;
}

/* --- Footer Styling --- */
footer {
    background-color: var(--color-dark);
    padding: 50px 20px 20px;
    border-top: 2px solid var(--color-primary);
    font-size: 0.95rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-column {
    min-width: 200px;
    max-width: 300px;
}
.footer-column h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 5px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li i {
    margin-right: 8px;
    color: var(--color-primary);
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    font-size: 0.85rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }
    nav ul {
        padding-top: 15px;
    }
    .site-logo img {
        height: 150px;
    }
    .footer-inner {
        flex-direction: column;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    /* Contact and Feature Grid changes */
    .contact-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
}
