.main-footer {
    background-color: #1a1c23;
    color: #ffffff;
    padding: 60px 0 0 0;
    border-radius: 50px 50px 0 0;
    margin-top: 50px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logo-footer {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4669fa;
    margin-bottom: 20px;
}

.logo-footer span {
    color: #f59e0b;
}

.brand-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 25px;
}

.newsletter label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    background: #242731;
    border: 1px solid #334155;
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
    outline: none;
}

.newsletter-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #1d4ed8;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8fafc;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.link-group ul li a:hover {
    color: #4669fa;
}

.footer-bottom {
    background-color: #111319;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 5px;
}

.footer-bottom p span {
    font-weight: 600;
}

.footer-bottom small {
    color: #64748b;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}
