/* Footer */
.footer {
    background: 
#1a2b3d;
    color: 
#b8c6db;
    padding: 60px 5% 30px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    color: 
#ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: 
#b8c6db;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: 
#ffd700;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: 
#ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: 
#ffd700;
    color: 
#1a2b3d;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Country toggle styles */
.country-item {
    margin-bottom: 10px;
    padding: 0;
}

.country-toggle {
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    color: #b8c6db;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.country-toggle:hover {
    color: #ffd700;
}

.toggle-icon {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    margin-left: 5px;
    display: inline-block;
}

.country-links {
    list-style: none;
    margin-left: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.country-links li {
    margin-bottom: 8px;
}

.country-links a {
    font-size: 0.9em;
    color: #9aa8bc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.country-links a:hover {
    color: #ffd700;
}

/* Animation for smooth expand/collapse */
.country-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.country-links[style*="display: block"] {
    max-height: 500px;
}