﻿body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #f9fafb;
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
}

header {
    /* background: linear-gradient(135deg, #2563eb, #1e40af); */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

    header h1 {
        font-size: 42px;
        margin-bottom: 15px;
        color: rgb(66, 54, 149);
    }

    header p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 30px;
    }

.btn {
    background: #fff;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}

    .btn.secondary {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: rgb(66, 54, 149);
}

h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: rgb(66, 54, 149);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

    .card h3 {
        margin-bottom: 10px;
    }

.cta {
    background: #1e40af;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 15px;
    z-index: 1000;
}

.site-logo {
    height: 200px; /* adjust as needed */
    width: auto;
}

.description {
    max-width: 900px; /* increase this */
    margin: 0 auto 30px;
    background-color: rgb(66, 54, 149);
    color: inherit;
    padding: 10px;
    font-size: 25px;
}}
