/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #fff;
}

/* Section Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

/* Colored Sections */
.section.hero {
    background: #1e1e2f;
}

.section.about {
    background: #4e54c8;
}

.section.services {
    background: #2e8b57;
}

.section.gallery {
    background: #ff6f61;
}

.section.testimonials {
    background: #8e44ad;
}

.section.contact {
    background: #34495e;
}

/* Gallery Images */
.gallery .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

/* Services List */
.services ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.services li {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

/* Testimonials */
.testimonials blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact input,
.contact textarea {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.contact button {
    padding: 12px;
    font-size: 1em;
    background: #ffffff;
    color: #34495e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services ul {
        flex-direction: column;
    }

    .gallery .images {
        flex-direction: column;
    }
}