.container {
    max-width: 1200px;
    margin: 0 auto;
}

.visaTitle {
    padding: 10px 15px;
    margin-bottom: 15px;
}

    .visaTitle h2 {
        margin-bottom: 7px;
    }

    .visaTitle p {
        text-align: justify;
    }

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Search Bar */
.search-container {
    position: relative;
    width: 270px;
}

    /* Search Bar */
    .search-container img {
        position: relative;
        top: -33px;
        right: 8px;
    }

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px !important;
    border-radius: 8px;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.tab {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #DDDDDD;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    margin: 0 5px;
    background-color: #FFFFFF8C;
    border-radius: 8px;
}

.visa-content hr {
    width: 240px;
    margin-bottom: 15px;
    border: none;
    border-top: 1px solid #3333334a;
}

.tab.active {
    background-color: #d8f4c2;
    color: rgb(30 109 0);
}

/* Size Label */
.size-label {
    background-color: #0088cc;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
}

/* Visa Grid */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Visa Card */
.visa-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .visa-card:hover {
        transform: translateY(-5px);
    }

.visa-image {
    height: 160px;
    overflow: hidden;
}

    .visa-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.visa-content {
    padding: 15px;
    align-items: self-start;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.visa-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.visa-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 13px;
    gap: 6px;
}

    .visa-info i {
        margin-left: 5px;
        color: #0088cc;
    }

.visa-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 13px;
    width: 100%;
}

.price-value {
    color: #0a7b3e;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .visa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-container {
        width: 100%;
    }

    .filter-tabs {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .visa-grid {
        grid-template-columns: 1fr;
    }
}
