body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    color: white;
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    background: #0a1a3d; /* dark blue behind the image */
    background-image: url('/static/h2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e7e1e1;
}

.hero p {
    font-size: 1.2rem;
    color: #e7e1e1;
}
.content {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    margin-bottom: 2rem;
}
.linksection {
    margin-bottom: 2rem;
    display: flex;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 0.5rem 0;
}

.features strong {
    color: #0044cc;
}

.cta {
    text-align: center;
    padding: 2rem 1rem;
    background: #e9f5ff;
}

.cta button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    color: white;
    background: #0044cc;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #222;
    color: white;
}

/* Navbar Styles */
.navbar {
    background: white;
    border-bottom: 2px solid #6bc1dd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6bc1dd;
    text-decoration: none;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #6bc1dd;
}

.navbar .cta-button {
    padding: 0.5rem 1rem;
    background-color: #6bc1dd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.navbar .cta-button:hover {
    background-color: #5aaec7;
}
.btn {
            display: block;
            width: 260px;
            padding: 18px;
            margin: 15px auto;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            text-align: center;
        }

        .btn-login {
            background: #007bff;
            color: #fff;
        }

        .btn-login:hover {
            background: #006ae0;
        }

        .btn-contact {
            background: #e0e0e0;
            color: #333;
        }

        .btn-contact:hover {
            background: #d5d5d5;
        }