/* General Body & Typography */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #fdfdfd;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a2c4e;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

p {
    font-size: 1.1rem;
    color: #555;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a2c4e;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Call to Action Button */
.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero {
    background-color: #eaf4ff;
    padding: 60px 0;
    text-align: left;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 50%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.step {
    text-align: center;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: #007bff;
    border-width: 2px;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.6rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #007bff;
    margin: 10px 0;
}

.price-description {
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card ul li {
    margin-bottom: 15px;
}

/* Policy Page Section */
.policy-section {
    padding: 60px 0;
}
.policy-section h1 { text-align: center; }
.policy-section h2 { text-align: left; font-size: 1.8rem; margin-top: 2rem; }
.policy-section hr { margin: 40px 0; border: 1px solid #eee; }

/* Footer */
footer {
    background-color: #1a2c4e;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer p {
    color: #eee;
    margin: 5px 0;
}

footer a {
    color: #a7caff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card { margin-bottom: 30px; }
    .pricing-card.popular { transform: scale(1); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .steps-container, .features-grid {
        flex-direction: column;
        align-items: center;
    }
}