/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #ff6600;
}

/* Header */
header {
    background: #003366;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .nav-links li {
    margin: 0 10px;
}

header .cta {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

header .cta:hover {
    background: #cc5200;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #003366, #66ccff);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
}

.hero .btn-primary {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.hero .btn-primary:hover {
    background: #cc5200;
}

/* Features Section */
.features {
    text-align: center;
    padding: 50px 20px;
}

.features h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #003366;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 10px 20px;
}
