.footer {
    border-top: 2px solid #1a1a1a;
    margin-top: 40px;
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #007bff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.footer-section ul li a, .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px;
    font-size: 14px;
}

.footer-section ul li a:hover, .contact-item a:hover {
    color: black;
    background-color: white;
}

.footer-section ul li a i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

/* Company info section - matching header style */
.company-info .logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.company-info .logo img {
    height: 40px;
    margin-right: 10px;
}

.company-info .logo h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.company-info p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item, .contact-item a {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 14px;
}

.contact-item i {
    color: #007bff;
    text-align: center;
    margin-right: 10px;
}

/* Newsletter section */
.newsletter-form {
    display: flex;
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #333;
}

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

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

/* Social links - matching icon style */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 20px;
}

.social-links a:hover {
    color: #007bff;
    border-color: #007bff;
}

.social-links a i {
    width: 26px;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #007bff;
}

.security-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}

.security-badge {
    background-color: #1a1a1a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #ccc;
    border: 1px solid #333;
}

a {
    color: white;
    text-decoration: none;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsiveness - matching original */
@media (max-width: 768px) {
    .footer {
        width: calc(100% + 30px);
        margin-left: -15px;
        padding: 30px 15px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-legal {
        justify-content: center;
    }

    .security-badges {
        justify-content: center;
    }
}