/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
}

body {
    background: #121212;
    color: #eee;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #1f1f1f;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

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

header nav ul li a {
    color: #f7f6f2;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #1e90ff;
}

/* Hero */
.hero {
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 100px 50px;
    text-align: center;
    position: relative;
}

.hero-text {
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 40px;
    border-radius: 10px;
}

.hero-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-text .button {
    padding: 10px 25px;
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 60px 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
}

.why-choose-us ul {
    list-style: disc inside;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #1f1f1f;
    text-align: center;
    padding: 20px;
}

footer nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin-top: 10px;
}

footer nav ul li a {
    color: #aaa;
    text-decoration: none;
}

footer nav ul li a:hover {
    color: #1e90ff;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background: #1e90ff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
