body {
    font-family: Arial;
    margin: 0;
    background: #f4f6f9;
    text-align: center;
}

/* Header */
header {
    background: black;
    color: white;
    padding: 15px;
}

/* Logo */
.logo {
    width: 120px;
    display: block;
    margin: 0 auto 10px;
}

/* Heading */
h1 {
    margin: 0;
}

h2 {
    color: red;
}

/* Navigation */
nav {
    background: red;
    padding: 10px;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px #ccc;
    transition: 0.3s;
}

.service-card h3 {
    color: #e60000;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #999;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .logo-section {
        flex-direction: column;
    }

    .logo {
        width: 60px;
    }

    .header h1 {
        font-size: 20px;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
    }

    .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    input, textarea {
        width: 90%;
    }
}
