.footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

* Logo Section */ .logo {
    margin-bottom: 20px;
}

.logo-image {
    height: 108px;
    width: auto;
    object-fit: contain;
}

.address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Logo Section */
.logo h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.tagline {
    font-size: 12px;
    margin: -5px 0 20px 0;
    opacity: 0.8;
}

.address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Section */
.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-footer-primary {
    background-color: #0a0819;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-footer-secondary {
    background-color: #ffffff;
    color: #1a2332;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.legal h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
}

/* App Download Section */
.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #232d3a;
    color: #fffeff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.app-button:hover {
    transform: translateY(-2px);
}

.app-button img {
    width: 24px;
    height: 24px;
}

.app-button div {
    display: flex;
    flex-direction: column;
}

.app-button .small {
    font-size: 10px;
    opacity: 0.7;
}

.app-button .large {
    font-size: 14px;
    font-weight: 600;
}

