/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4 {
    color: #0056b3;
    text-align: center; /* Center all headings */
    margin-bottom: 1rem; /* Add some space below headings */
}

.container {
    width: 80%;
    margin: 0 auto;
}

ul {
    list-style: none;
    padding: 0;
}

/* Header Styles */
header {
    background: #0c0b10;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
header .logo {
    max-height: 100px;
    height: auto;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
}

/* Hero Section */
#hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
    margin-top: 120px;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#hero .btn {
    padding: 10px 20px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Services Section */
#services {
    background: #f4f4f4;
    padding: 3rem 0;
    text-align: center;
}

#services h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    justify-content: space-around;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.service-item h4 {
    margin-bottom: 10px;
    text-align: center; /* Center the service titles */
}

/* Testimonials Section */
#testimonials {
    padding: 6rem 0;
    text-align: center;
}

#testimonials h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    margin-bottom: 2rem;
}

.testimonial-item p {
    font-style: italic;
}

.testimonial-item h4 {
    margin-top: 10px;
}

/* Contact Section */
#contact {
    background: #0c0b10;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

#contact h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#contact p a {
    color: #ff9800;
    text-decoration: none;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-end;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}
