* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcfafa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    position: relative;
}

header img {
    max-width: 120px;
}

#burger-tog {
    display: none;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
}

.menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    text-align: center;
    z-index: 100;
}

#burger-tog:checked ~ .menu-links {
    display: flex;
}

nav .menu-links a {
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

nav .menu-links a.active, 
nav .menu-links a:active {
    color: #8bb5e8;
}

.content {
    padding: 1rem;
    flex: 1;
}

#ban img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

#pro {
    font-size: 1.8rem;
    color: #8bb5e8;
    text-align: center;
    margin-bottom: 1.5rem;
}

.home, .pro2 {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-align: center;
}

.home .six {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.home .six h1 {
    font-size: 1.5rem;
    color: #8bb5e8;
}

.home .six img {
    width: 40px;
    height: auto;
    margin-bottom: 0.5rem;
}

section.home a {
    text-decoration: none;
    color: #e78b8b;
    font-weight: bold;
}

section.pro2 a {
    display: inline-block;
    text-decoration: none;
    background-color: #e78b8b;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    margin: 0.5rem 0;
}

section.home a:active {
    color: #8bb5e8;
}

section.pro2 a:active {
    background-color: #8bb5e8;
}

footer {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
}

footer img {
    width: 30px;
    height: auto;
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .burger-icon {
        display: none;
    }

    .menu-links {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
    }

    nav .menu-links a {
        border-bottom: none;
        margin-left: 2rem;
        padding: 0;
    }

    nav .menu-links a:hover {
        color: #e78b8b;
    }

    #ban img {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .home, .pro2 {
        margin-left: 100px;
        margin-right: 100px;
    }

    .home .six {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}