body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
}

header {
    background-color:#fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .logo {
    height: 50px;
}

header .logo img {
    height: 250px;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding-right: 30px;
    padding-bottom: 30px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
}

#hero {
    background-color: #a7a7a7;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#hero h2 {
    margin: 0;
    font-size: 2.5em;
}

#hero p {
    font-size: 1.2em;
}

.container {
    width: 80%;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

#services {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

#services h2 {
    color: #f85092;
    margin-bottom: 40px;
}

#services .services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#services .service {
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

#services .service:hover {
    transform: scale(1.05);
}

#services .service img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#services .service h3 {
    margin-top: 10px;
    color: #333;
}

@media (max-width: 768px) {
    #services .service {
        width: 45%;
    }
}

@media (max-width: 480px) {
    #services .service {
        width: 100%;
    }
}

#about, #contact, #stats {
    background-color: #f6f6f6;
    text-align: center;
}

#contact a {
    background-color: #f85092;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

footer {
    background-color: #a7a7a7;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #fff;
        width: 100%;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    #services .service {
        width: 45%;
    }
}

@media (max-width: 480px) {
    #hero h2 {
        font-size: 1.8em;
    }

    #hero p {
        font-size: 1em;
    }
    #services .service {
        width: 100%;
    }
}
#about {
    background-color: #f6f6f6;
    padding: 60px 0;
}

#about h2 {
    color: #f85092;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text {
    margin-top: 20px;
    color: #333;
}

.about-text p, .about-text ul {
    color: #555;
    line-height: 1.6;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-text ul li strong {
    color: #f85092;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .about-text {
        padding: 10px;
    }
    .about-image {
        margin-top: 20px;
    }
}