/* General Setup */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Color Palette based on the Logo */
:root {
    --primary-color: #0d47a1; /* Darker Blue */
    --secondary-color: #00bcd4; /* Light Blue / Cyan */
    --accent-color: #ff9800; /* Subtle Accent for CTAs */
    --bg-light: #ffffff;
    --text-dark: #212121;
}

/* Header and Logo */
.header-content {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.header-content h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

/* Main Content */
.about-content {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Key Features Section (The 3 Cards) */
.key-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.feature-card {
    flex: 1;
    min-width: 250px; /* Ensures they don't get too narrow */
    padding: 30px 20px;
    background-color: #e3f2fd; /* Very light blue background */
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
}

.feature-card.highlighted {
    background-color: var(--primary-color);
    color: var(--bg-light);
    border-top: 5px solid var(--accent-color);
}

.feature-card.highlighted .icon {
    color: var(--secondary-color);
}

.feature-card.highlighted h3 {
    color: var(--bg-light);
}

/* Call to Action Banner */
.cta-banner {
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-banner p {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e68900; /* Slightly darker orange */
}

/* Footer Note */
.footer-note {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    font-size: 0.9em;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .key-features {
        flex-direction: column;
        gap: 20px;
    }
    .header-content h1 {
        font-size: 2em;
    }
    .cta-banner p {
        font-size: 1.2em;
    }
}