.log {
    color: white;
    background-color: #007BFF;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.log:hover {
    background-color: #0056b3;
}

#loghh {
    width: 80px;
    height: 80px;
}

.headerhead {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.headerhead .logo {
    height: 80px;
    width: 80px;
}

.headerhead nav {
    flex-grow: 1;
    margin-left: 20px;
}

.headerhead ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.headerhead ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
}

.headerhead ul li a:hover {
    background-color: #f0f0f0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #000;
    border-radius: 2px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .headerhead {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .hamburger {
        margin-left: 20px;
        display: flex;
        margin-right: 15px;
    }

    .headerhead .logo {
        margin-left: 10px;
    }

    .headerhead nav {
        flex-grow: 1;
        margin-left: 20px;
    }

    .headerhead ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .headerhead ul.active {
        display: flex;
    }

    .headerhead ul li {
        width: 100%;
    }

    .headerhead ul li a {
        padding: 10px;
        display: block;
        width: 100%;
    }
}

#footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

#footer .footer-section {
    flex: 1 1 300px;
    margin: 20px;
}

#footer .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f4f4f4;
    text-transform: uppercase;
}

#footer .footer-section p,
#footer .footer-section a {
    font-size: 14px;
    color: #d1d1d1;
    text-decoration: none;
    line-height: 1.8;
}

#footer .footer-section a:hover {
    color: #007BFF;
}

#footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

#footer .social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

#footer .social-icons a:hover {
    color: #007BFF;
}

#footer .copyright {
    margin-top: 30px;
    font-size: 12px;
    color: #888888;
}

@media screen and (max-width: 768px) {
    #footer .footer-container {
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-section {
        margin: 10px 0;
    }
}