body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #1f3a5f; /* deep blue */
    color: white;
    height: 70px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header nav {
    display: flex;
    align-items: center;
}

.btn {
    background: #28a745;
    padding: 8px 15px;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo {
    background: #1f3a5f;
    padding: 5px 10px;
    border-radius: 6px;
}

/* HERO */
.hero {
    background: url('../images/hero.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    background: #28a745;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.hero-small {
    padding: 0px 20px;
}

/* SERVICES */
.services {
    padding: 50px 0;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    flex: 1;
}

/* TESTIMONIAL */
.testimonials {
    background: #eee;
    padding: 50px 0;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 30px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}