/* Reset General */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .btn {
    background-color: #2980b9;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.hero-content .btn:hover {
    background-color: #1c5985;
}

/* About Section */
.about {
    padding: 2rem 0;
    text-align: center;
    background-color: #f5f5f5;
}

.about h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about p {
    color: #555;
}

/* Services Section */
.services {
    padding: 2rem 0;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 2rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact label {
    text-align: left;
    font-weight: bold;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background-color: #2c3e50;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact button:hover {
    background-color: #1c252e;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
