/* Base Styles for Consistency */
body {
    background-color: #0d1117;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

/* -------------------------------------------------------------------------- */
/* HEADER & WAVE SECTION */
/* -------------------------------------------------------------------------- */

.investor-header {
    /* Blue Gradient matching the previous sections */
    position: relative; 
    background: linear-gradient(135deg, #1e3a8a, #3498db); 
    padding-top: 120px;
    padding-bottom: 120px; 
    overflow: hidden; 
    color: #ffffff; 
    text-align: center;
}

/* SVG Wave Divider (Positioned at the bottom of the blue gradient section) */
.investor-header svg {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 150px; /* Reduced height for a cleaner look */
    z-index: 1;
}

/* Path fill color MUST match the background of the section below it */
.investor-header svg path {
    fill: #0d1117; 
}

/* Header Typography */
.investor-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.investor-header .lead {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* -------------------------------------------------------------------------- */
/* MAIN CONTENT SECTIONS */
/* -------------------------------------------------------------------------- */

.content-section {
    padding: 60px 0;
    background-color: #0d1117;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3498db; /* Accent color for main headings */
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    height: 100%; /* Ensures all cards in a row have the same height */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* --- LOGO PLACEHOLDER STYLES (UPDATED FOR RECTANGULAR/SQUARE) --- */
.logo-placeholder {
    /* Base container for all logos */
    margin-bottom: 15px;
    padding: 5px; /* Slight padding around the image */
    display: inline-block; /* Only take up space needed */
}

/* Style for the Square Logo (EntrepriseSite) */
.logo-placeholder-square {
    width: 60px;
    height: 60px;
    border-radius: 12px; /* Slight rounding for square logo */
}

/* Style for the Rectangular Logo (iWenze) */
.logo-placeholder-rect {
    width: 90px;
    height: 45px; /* Rectangular proportions */
    border-radius: 8px; /* Slight rounding for rectangular logo */
}

/* Ensures images inside the placeholder fit the container */
.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Important for fitting logos of any aspect ratio */
}
/* ----------------------------------------------------------------- */

.key-figure {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffc107; /* Yellow accent for figures */
}

/* CTA Button for Documents */
.cta-document-button {
    background-color: #ffc107; /* Yellow/Gold */
    color: #000000;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
    transition: background-color 0.2s;
}

.cta-document-button:hover {
    background-color: #f2ead4;
    color: #000000;
}

.cta-document-button-blue {
    background-color: #076eff; /* Yellow/Gold */
    color: #000000;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(7, 152, 255, 0.4);
    transition: background-color 0.2s;
}

.cta-document-button-blue:hover {
    background-color: #f2ead4;
    color: #000000;
}