
/* --- Additions/Adjustments to styles.css --- */

/* Change accent color for a more corporate feel if desired */
:root {
    --primary-color: #004a8c; /* Deeper Corporate Blue */
    --secondary-color: #e67e22; /* Professional Orange */
    /* ... other colors remain ... */
}

/* Enhancing the Hero B2B Look */
.hero h2 {
    font-size: 3.2em;
    color: var(--primary-color);
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Giving a stronger visual to the B2B Metrics in the cards */
.advantage-card {
    /* Existing styles... */
    border-top: 5px solid var(--secondary-color); /* Visual emphasis */
}

.advantage-card h4 {
    /* Existing styles... */
    font-size: 1.3em;
}

/* Styling the partnership call to action */
.button.primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* --- Global Styles & Reset --- */
:root {
    --primary-color: #004a8c; /* Deeper Corporate Blue */
    --secondary-color: #e67e22; /* Professional Orange */
    --text-color: #333;
    --light-text-color: #f4f4f4;
    --background-light: #ffffff;
    --background-dark: #2c3e50; /* Dark Blue/Charcoal for contrast */
    --card-background: #ecf0f1;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* ... (rest of the CSS remains the same) ... */

/* --- Navigation Header --- */
/* ... (rest of the header CSS remains the same) ... */

.logo {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: 700;
}

/* ... (rest of the CSS remains the same) ... */