/* Stylesheet for Attractive Landing Page */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #004aad;
    padding: 15px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

.btn-primary {
    background-color: #ffcc00;
    color: #004aad;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e6b800;
    color: white;
}

.hero {
    background: linear-gradient(135deg, #1a73e8 0%, #004aad 100%);
    color: white;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.features {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #004aad;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    color: #004aad;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
}

.about {
    background-color: #e2e8f0;
    padding: 35px 20px;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    text-align: center;
    color: #333;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #004aad;
}

.signup {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.signup h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004aad;
}

.signup form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signup input[type="email"] {
    padding: 10px 15px;
    font-size: 1rem;
    border: 2px solid #004aad;
    border-radius: 25px;
    width: 280px;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup input[type="email"]:focus {
    border-color: #ffcc00;
}

.signup button {
    border-radius: 25px;
    border: none;
    background-color: #004aad;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup button:hover {
    background-color: #00337f;
}

footer {
    background-color: #004aad;
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin-top: 40px;
}
