body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: #050505;
    font-weight: bold;
}

.hero {
    background: url("acc.png") center/cover no-repeat;
    color: #ffffff;
    padding: 100px 20px;
    text-align: left;
    position: relative;
}

.hero::after {
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    margin: 0 0 20px;
}

.cta-button {
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card img {
    height: 60px;
    margin-bottom: 15px;
}

.card h3 {
    margin: 0;
    font-size: 18px;
}

.card p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav li {
        margin: 10px 0;
    }

    .hero {
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 300px;
    }
}
