/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #0056b3;
    padding: 20px 5%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    color: white;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0056b3, #007bff);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta button {
    padding: 12px 30px;
    margin: 10px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.cta .primary {
    background-color: #28a745;
    color: white;
}

.cta .secondary {
    background-color: white;
    color: #0056b3;
    border: 1px solid #0056b3;
}

/* Services Section */
#services {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

#services h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

.service-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 5%;
    text-align: center;
}

footer a {
    color: #28a745;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .cta button {
        width: 100%;
        margin: 5px 0;
    }
}
