* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    margin: 0;
    background-color: #f4f4f4;
}

.very-top {
    background-color: #4CAF50;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-decoration: none;
    color: inherit;
    margin-left: 130px;
}

.brand h2 {
    margin: 0;
}
a{
    text-decoration: none;
    color: #4CAF50;
}
a:hover{
    color: black;
    text-decoration: double;
}
.log {
    display: flex;
    gap: 20px;
    margin-right: 10px;
}

.auth-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    position: relative;
}

.auth-link img {
    height: 40px;
    width: 40px;
    margin-right: 5px;
}

.auth-link p {
    margin: 0;
}

.auth-link:hover p {
    color: white;
    font-size: 17px;
}

.auth-link:hover:nth-child(2) p {
    color: wheat;
}

.about-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-section h1 {
    text-align: center;
    color: #4CAF50;
}

.about-section img {
    display: block;
    margin: 20px auto;
    width: 200px;
    height: 100px;
    border-radius: 10px;
}

.about-section p {
    margin-bottom: 20px;
}

.about-section ul {
    padding-left: 20px;
}

.about-section .team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    flex: 1;
    margin: 10px;
    max-width: 250px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: #777;
}
footer {
    background: #111;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #C1E899;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 50px;
    animation: float 3s infinite alternate ease-in-out;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #C1E899;
    display: block;
    margin-top: 5px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #C1E899;
    font-size: 1.4rem;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.newsletter {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    border-radius: 30px 0 0 30px;
    transition: all 0.3s ease;
}

.newsletter button {
    padding: 12px 20px;
    background: #C1E899;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0 30px 30px 0;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: white;
    color: black;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}/* Media queries for responsiveness */
@media (max-width: 768px) {
    .very-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .log {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-right: 0;
    }

    .auth-link img {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 480px) {
    .brand h2 {
        font-size: 1.5rem;
    }

    .auth-link p {
        font-size: 0.9rem;
    }

    .auth-link img {
        height: 25px;
        width: 25px;
    }
}

