/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #37363a;
}

a {
    text-decoration: none;
    color: #cf242a;
}

/* Header */
header {
    background-color: #cf242a;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
}

/* Home Section */
#home {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

#home h1 {
    font-size: 2.5rem;
    color: #cf242a;
    font-weight: 800;
}

#home p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

#home .btn {
    background-color: #cf242a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
}

/* About Section */
#about {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

#about h2 {
    font-size: 2rem;
    color: #cf242a;
    font-weight: 800;
}

#about p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Services Section */
#services {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

#services h2 {
    font-size: 2rem;
    color: #cf242a;
    margin-bottom: 30px;
    font-weight: 800;
}

.service {
    margin: 20px 0;
}

.service h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Contact Section */
#contact {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    color: #cf242a;
    font-weight: 800;
}

/* Footer */
footer {
    background-color: #37363a;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    margin: 0 10px;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Font */
h1, h2, h3 {
    font-family: 'Geoma', sans-serif;
}

/* ...existing styles... */

/* Responsive styles */
@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 100px; /* Adjust as needed */
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .intro h1 {
        font-size: 1.5em; /* Adjust as needed */
        text-align: center;
    }

    .intro p {
        font-size: 1em; /* Adjust as needed */
        text-align: center;
        padding: 0 10px;
    }

    .btn {
        display: block;
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    section {
        padding: 20px;
    }

    .service {
        margin-bottom: 20px;
    }

    footer {
        text-align: center;
    }

    /* footer a {
        display: block;
        margin: 5px 0;
    } */
}