body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #f8a20f;
    color: white;
}

nav .logo img {
    height: 60px;
}

nav .contact a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

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

.hero-text .btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 22px;
    border-radius: 5px;
    font-weight: bold;
}

/* Quote Form */
.quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: #f4f4f4;
}

.quote-form {
    max-width: 500px;
    background: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.quote-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.quote-form button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.service-item {
    display: inline-block;
    width: 45%;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    border-radius: 5px;
}

.service-item h3 {
    font-size: 22px;
    margin: 15px 0;
}

/* Image Sections */
.image-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
}

.image-section img {
    width: 45%;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
}
