/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

header {
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f, #222);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 20px;
}

.cta-button, .contact-button {
    background-color: #007bff;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

#services, #contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #181818;
}

#services h2, #contact h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 30px;
}

.service-card {
    background-color: #222;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #aaa;
}

.service-card:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #181818;
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 1rem;
}