.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 40px 8px 40px;
    overflow: hidden;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    background-color: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    width: fit-content;
}

.logo .pro {
    background: linear-gradient(90deg, #F48420, #FF5800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-section h4 {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #f8f8f8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-icon:hover {
    background-color: #F48420;
    color: #fff;
    transform: translateY(-2px);
}

.social-icons a {
    margin-right: 10px;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    background-color: #F4F4F4;
    padding: 14px 15px;
    border-radius: 50px;
}

.facebook-padding {
    padding: 14px 18px !important;
}

.links-section h3 {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #F48420;
}

.newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.newsletter-section h3 {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
    gap: 14px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    outline: none;
    background-color: #F4F4F4;

}

.newsletter-input:focus {
    border-color: #F48420;
}

.newsletter-btn {
    background: linear-gradient(90deg, #F48420, #FF5800);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #F48420;
}

.character-mascot {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F48420, #FF5800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto;
}

.footer-bottom {
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.copyright {
    color: #999;
    font-size: 12px;
}

.logo {
    width: 150px;
    margin-bottom: 15px;
}

.mascot {
    width: 120px;
    margin-top: 20px;
    position: absolute;
    bottom: -100px;
    right: 109px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: row;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 50px;
    }

    .newsletter-btn {
        border-radius: 50px;
        padding: 15px 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        height: 200px;
    }

    .mascot {
        width: 120px;
        margin-top: 20px;
        position: absolute;
        bottom: -115px;
        right: 35%;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 20px 15px;
    }

    .logo {
        font-size: 16px;
    }

    .character-mascot {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .newsletter-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        height: 230px;
    }

    .mascot {
        width: 120px;
        margin-top: 20px;
        position: absolute;
        bottom: -115px;
        right: 109px;
    }

    .social-section h4 {
        text-align: center;
    }

    .logo2 {
        text-align: center;
    }

    .description {
        text-align: center;
    }

    .links-section h3 {
        text-align: center;
    }

    .links-list {
        text-align: center;
    }

    .inks-section {
        text-align: center;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@font-face {
    font-family: 'ArialRounded';
    src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}