/* Countries section styles */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.country {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.country:hover {
    transform: translateY(-5px);
}

.flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.country h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.country p {
    color: #666;
    font-size: 0.9rem;
}