.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 0;
}

#search {
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    transition: border-color 0.3s ease-in-out;
}

#search:focus {
    border-color: #0d6efd;
    outline: none;
}

.country-card .card {
    background-color: #ffffff;
    border: 1px solid #e1e5ea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    height: 100%;
}

.country-card .card,
.card-img-wrapper img {
    border-radius: 0;
}

.country-card .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    height: 180px;
    overflow: hidden;
    background-color: #f1f1f1;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 5px;
}

.card-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.pinside30,
.pinside60 {
    padding: 30px !important;
}

.section-space40 {
    padding-bottom: 40px;
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    #search {
        margin-top: 10px;
    }

    .card-body {
        padding: 15px;
    }
}