/* Global styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 2rem 0;
}

/* Hero section */
.hero {
    background-color: #1a1a1a;
    text-align: center;
    padding: 80px 0;
    color: #fff;
}

.hero .logo {
    width: 250px;
    max-width: 80%;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Section styles */
.about,
.services,
.contact {
    padding: 60px 0;
}

.about {
    background-color: #f4f4f4;
}

.services {
    background-color: #ffffff;
}

.contact {
    background-color: #f4f4f4;
}

.about h2,
.services h2,
.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #1a1a1a;
}

.services ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
}

.services li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.services li strong {
    color: #0066cc;
}

/* Contact section */
.contact p {
    text-align: center;
    font-size: 1.1rem;
    margin: 8px 0;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}