/* styles.css */

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

/* Header / Hero Section */
.hero {
    background: linear-gradient(to bottom, #1e88e5, #1565c0);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero img.logo {
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 10px 20px;
    background: white;
    color: #1565c0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #f1f1f1;
}

/* Section Styling */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.features-section, .how-it-works-section, .cta-section {
    padding: 50px 0;
    text-align: center;
}

.features-section h2, .how-it-works-section h2, .cta-section h2 {
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 20px;
}

.features-section p, .how-it-works-section p, .cta-section p {
    font-size: 1.1rem;
    color: #555;
}

/* Features Section */
.features-section .feature {
    margin: 20px 0;
}

.features-section h3 {
    color: #1e88e5;
    margin-bottom: 10px;
}

/* Call-to-Action Section */
.cta-section .btn-secondary {
    background: #1e88e5;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-section .btn-secondary:hover {
    background: #1565c0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #1e88e5;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
