.about-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
}

.about-text {
    flex: 3;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.about-text p strong {
    color: #052374;
}

.about-cta {
    flex: 1;
    background-color: #052374;
    color: white;
    padding: 30px 20px;
    border-radius: 10px;
    min-width: 260px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.about-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}
.about-cta ul {
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-cta ul li {
    margin-bottom: 6px;
}
.about-cta .btn {
    font-weight: bold;
    padding: 12px;
}
.about-cta button:hover {
    background-color: #f0f0f0;
}

.schengen-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.schengen-section h4 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #052374;
}

.schengen-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.schengen-country {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    font-size: 0.9rem;
}

.schengen-country img {
    width: 50px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 6px;
}
.custom-blue-outline {
    color: #052374;
    border: 2px solid #052374;
    background-color: transparent;
    font-weight: 600;
    padding: 10px 20px;
    transition: 0.3s ease;
}

.custom-blue-outline:hover {
    background-color: #052374;
    color: white;
    text-decoration: none;
}
