/* Base styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f9fc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    color: #273c75;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    background-color: #eaf2fb;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
    text-align: center;
}

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

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #273c75;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #192a56;
}

/* Features Section */
.features {
    background-color: #f7f9fc;
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: #273c75;
}

.feature-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Why Section */
.why {
    padding: 4rem 0;
}

.why p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #444;
}

/* Pricing Section */
.pricing {
    background-color: #eaf2fb;
    padding: 4rem 0;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 1rem;
}

.pricing p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #444;
}

.pricing .primary {
    background-color: #44bd32;
}

/*
 * When hovering on the primary pricing button, use a slightly darker shade
 * of the same green rather than falling back to a blue tint.  This change
 * improves visual cohesion and makes it clear the button remains part of
 * the pricing call‑to‑action.  The new colour (#2e7d32) is about 20% darker
 * than the base green.
 */
.pricing .primary:hover {
    background-color: #2e7d32;
}

.pricing .footnote {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #273c75;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
    }
    .hero-content {
        text-align: left;
    }
    .hero-image {
        margin-left: 2rem;
    }
}