/* Basic Reset & Typography */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    scroll-behavior: smooth;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

/* Hero Section */
#hero {
    background: url('https://images.unsplash.com/photo-1542353347-19077659c25f?fit=crop&w=1500&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Services Section */
.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: calc(33% - 40px);
    box-sizing: border-box;
}

/* Reviews Section */
.review-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.review-item {
    background: white;
    padding: 20px;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: calc(45% - 40px);
    box-sizing: border-box;
}

.review-author {
    font-style: italic;
    margin-top: 10px;
}

/* Contact Form Section */
#contact h2 {
    margin-bottom: 20px;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#contact button {
    background: #007BFF;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item, .review-item {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
}