.animation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 97vh;
}

.logo-container {
    text-align: center;
    padding: 0 20px;
}

.logo-img {
    width: 280px;
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0);
}

.brand-name {
    font-size: 4.5rem;
    font-weight: bold;
    color: #4a701c;
    margin: 0;
    opacity: 0;
    transform: translateX(-60px);
}

.tagline {
    font-size: 1.7rem;
    color: #4a701c;
    margin-top: -12px;
    margin-left: 78px;
    opacity: 0;
    font-weight: 500;
    transform: translateY(-40px);
    text-align: center;
}

.links-container {
    margin-top:0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    font-weight: 600;
}

.link-item {
    font-size: 26px;
    color: #52b4e3;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    line-height: 40px;
}

.link-item:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .brand-name { font-size: 2.2rem; }
    .tagline {
        font-size: 1rem;
        margin-top: -4px;
        margin-left: 63px;
        text-align: center;
        transform: translateY(0); 
    }
    .logo-img { width: 130px; }
    .links-container {
        gap: 10px;
    }
    .link-item {
        font-size: 18px;
        line-height: 25px;
    }
    .animation-section {
        height: 88vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-name { font-size: 1.8rem; }
    .tagline {
        font-size: 0.9rem;
        margin-top: -4px;
        margin-left: 63px;
        text-align: center;
        transform: translateY(0);
    }
    .logo-img { width: 110px; }
    .links-container {
        gap: 8px;
    }
    .link-item {
        font-size: 16px;
        line-height: 22px;
    }
    .animation-section {
        height: 88vh;             
        flex-direction: column;  
        justify-content: center;
        align-items: center; 
        text-align: center;  
    }
}