/* Basic Reset & Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #0056b3;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.tagline {
    font-weight: 400;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 60px 0;
}

section:nth-of-type(even) {
    background-color: #e2e2e2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    background: #007bff;
    color: #fff;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto;
}

.cta-button {
    background: #ffc107;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a800;
}

/* Services Section */
.service-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
}

/* CTA Quote Section */
.cta-quote {
    background: #0056b3;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/* Contact Form Section */
#contact {
    padding: 60px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

#contact button {
    display: block;
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
    }
}
