* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #007bff;
    color: white;
    padding: 20px 0;
}

.header h1 {
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-links li a:hover {
    text-decoration: underline;
}

.hero {
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5em;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.btn-primary {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(255,193,7,0.3);
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0a800;
}

.services {
    padding: 60px 0;
    text-align: center;
}

.service-items {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    max-width: 100px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #007bff;
}

.about {
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 50px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.contact {
    background: #007bff;
    color: white;
    padding: 40px 20px;
    border-radius: 6px;
    max-width: 600px;
    margin: auto 0 80px auto;
}

.contact h2 {
    margin-bottom: 25px;
}

.contact label {
    display: block;
    font-weight: 600;
    margin: 15px 0 6px;
}

.contact input, 
.contact textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

.contact textarea {
    min-height: 120px;
    resize: vertical;
}

.contact button {
    background: #ffc107;
    color: #333;
    margin-top: 20px;
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 5px 10px rgba(255,193,7,0.3);
}

.contact button:hover {
    background: #e0a800;
}

#formMessage {
    margin-top: 15px;
    font-weight: 700;
}

.footer {
    background: #222;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

@media (max-width: 768px){
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .service-items {
        flex-direction: column;
        gap: 25px;
    }
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1.2em;
    }
}