/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    margin: 0;
}

h1 {
    font-size: 2.5rem;
    color: #cdd5de;
}

h2 {
    font-size: 2rem;
    color: #007acc;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0056b3, #007acc);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-width: 270px;
    height: auto;
}

.tagline {
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    color: white;
    background-color: #ff6f00;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Services Section */
.services {
    padding: 2rem 1rem;
    text-align: center;
    background-color: white;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: #f1f1f1;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* About Section */
.about {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 2rem 1rem;
    background-color: white;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-weight: bold;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 0.75rem;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #007acc;
}

/* Footer */
footer {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
