/* --- Basic Reset and Layout --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif; /* Use a modern, readable font */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* --- Header & Navigation --- */
.main-header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    border-bottom: #007bff 3px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #007bff;
}

/* --- Hero Section --- */
.hero-section {
    background: #007bff; /* Primary color */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ffc107; /* Secondary accent color */
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #e0a800;
}

/* --- Content Sections --- */
section {
    padding: 60px 0;
    text-align: center;
}

.services-section {
    background: #fff;
}

.why-us-section {
    background: #e9ecef; /* Light gray background */
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.service-list article {
    flex: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
}

.value-propositions p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 15px auto;
    padding: 10px;
    border-left: 3px solid #007bff;
    text-align: left;
}

/* --- Contact Section --- */
.contact-section {
    background: #333;
    color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 20px auto;
    display: grid;
    gap: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button.cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact-info a {
    color: #ffc107;
    text-decoration: none;
}

/* --- Footer --- */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Simple Mobile Responsiveness --- */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 10px;
    }
    .service-list {
        flex-direction: column;
    }
    .hero-section {
        padding: 60px 20px;
    }
}