body {
    margin: 0;
    font-family: 'Tahoma', sans-serif;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
}

/* Header */
.top-bar {
    background: #222;
    color: #fff;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

/* Hero */
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 70vh;
    position: relative;
}

.hero .overlay {
    background: rgba(0,0,0,0.6);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
}

.btn {
    background: #b30000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
}

/* Features */
.features {
    background: #fff;
    padding: 40px 0;
}

.features .container {
    display: flex;
    gap: 20px;
}

.feature-box {
    background: #eee;
    padding: 20px;
    text-align: center;
    flex: 1;
    border-radius: 5px;
}

/* Services */
.services {
    padding: 40px 0;
    text-align: center;
}

.services .container {
    display: flex;
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
}

.service-card img {
    width: 100%;
    border-radius: 5px;
}

/* Contact */
.contact {
    background: #fff;
    padding: 40px 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

.contact button {
    background: #b30000;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
}
