body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

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

/* --- Hero Section --- */
.hero {
    background: linear-gradient(180deg, #00173F, #003566);
    color: white;
    padding: 40px 0 80px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    width: 200px;
}

.nav-cta {
    background-color: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: white;
    color: #003566;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-button {
    background-color: #FFC300; /* A vibrant accent color */
    color: #003566;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Features Section --- */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #003566;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #003566;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #003566;
}

/* --- Quote Section --- */
.quote-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #003566;
    max-width: 700px;
    margin: 0 auto;
    border-left: 5px solid #FFC300;
    padding-left: 30px;
}

/* --- API CTA Section --- */
.api-cta-section {
    background-color: #003566;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.api-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.api-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.api-cta-button {
    background-color: #FFC300;
    color: #003566;
    border: 2px solid #FFC300;
}

.api-cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}


/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(180deg, #00173F, #003566);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .cta-button {
    align-self: flex-start;
    cursor: pointer;
}

.contact-logo {
    flex-shrink: 0;
    width: 400px; /* Adjust size as needed */
}

/* --- Footer --- */
.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    nav {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .logo {
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Features Section */
    .features-section h2 {
        font-size: 2rem;
    }

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

    /* Quote Section */
    .quote-section blockquote {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    /* Contact Section */
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .contact-logo {
        width: 80%;
    }

    .nav-cta {
        display: none;
    }
}
