body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

/* HEADER */
header {
    text-align: center;
    padding: 40px 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
    width: 260px;
    height: auto;
}

/* HERO SECTION */
.hero {
    height: 380px;
    background: url('assets/metal-texture.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.75);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: #111;
}

.hero p {
    font-size: 20px;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

/* CONTENT SECTIONS */
.services, .contact, .contact-form {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

/* SERVICES LIST */
.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #444;
    font-size: 17px;
}

/* CONTACT FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #444;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #f0f0f0;
    font-size: 14px;
    color: #333;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
