/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #0d3b66;
    color: white;
    padding: 20px 0;
}
header h1 {
    display: inline-block;
}
header nav {
    float: right;
}
header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}
header nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background: #fafafa;
    padding: 80px 0;
    text-align: center;
}
#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
#hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    background: #0d3b66;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background: #08304b;
}

/* Services */
#services {
    padding: 60px 0;
    background: #e0e0e0;
}
.cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card {
    background: white;
    flex: 0 0 30%;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card h3 {
    margin-bottom: 10px;
}

/* About */
#about {
    padding: 60px 0;
    text-align: center;
}

/* Contact */
#contact {
    padding: 60px 0;
    background: #fafafa;
    text-align: center;
}
#contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
#contact input, #contact textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#contact button {
    background: #0d3b66;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
#contact button:hover {
    background: #08304b;
}

/* Footer */
footer {
    background: #0d3b66;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
