/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #0077cc;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
}

#hero {
    text-align: center;
    background: #eef0fc;
    padding: 40px 20px;
    border-radius: 8px;
}

form {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

input[type="text"] {
    padding: 10px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

button {
    padding: 10px 20px;
    background: #0077cc;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

button:hover {
    background: #005999;
}

ol {
    padding-left: 20px;
}

ol li {
    margin-bottom: 10px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

#cta {
    text-align: center;
    background: #0077cc;
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: white;
    color: #0077cc;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: #005999;
    color: white;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
    border-radius: 8px;
    width: 300px;
    height: 200px;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 15px;
    background: #eee;
    font-size: 0.9rem;
    margin-top: 20px;
}

