/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f9f9f9;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0066cc;
    padding: 10px 20px;
}

header .logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(to bottom, #0066cc, #004a99);
    color: white;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero .button {
    background: #ffcc00;
    color: #333;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.hero .button:hover {
    background: #e6b800;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    padding: 20px;
}

.feature {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    text-align: center;
}

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

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background: #0066cc;
    color: white;
}
