/* styles.css - Refined styling to match a theme similar to Nicepage */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero p {
    font-size: 22px;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    display: inline-block;
    margin-top: 15px;
}

nav {
    background: #333;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 20px;
}

.container {
    width: 85%;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

h1, h2 {
    color: #222;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* ABOUT SECTION */
.about {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about img {
    max-width: 50%;
    border-radius: 10px;
    margin-right: 30px;
}

/* SERVICES SECTION */
.service-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 40px;
}

.service-item {
    background: #ff6600;
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    font-size: 20px;
    width: 30%;
}

/* TESTIMONIALS SECTION */
.testimonials {
    margin-bottom: 40px;
}

.testimonial {
    background: #f4f4f4;
    padding: 20px;
    border-left: 5px solid #ff6600;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #333;
}

/* CONTACT SECTION */
.contact-section {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input,
form textarea {
    width: 80%;
    max-width: 600px;
    margin: 10px 0;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

form button {
    background: #333;
    color: white;
    padding: 15px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 15px;
}

form button:hover {
    background: #ff6600;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 18px;
}
