.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 12px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a:nth-child(1) { background-color: #3b5998; }
.social-icons a:nth-child(2) { background-color: #000; }
.social-icons a:nth-child(3) { background-color: #0077b5; }
.social-icons a:nth-child(4) { background-color: #25d366; }

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
}

.language-selector img {
    width: 16px;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 150px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-size: 12px;
}

.search-box button {
    padding: 6px 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #000;
}

/* Banner */
.banner {
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #2850a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
}

/* Application Section */
.application-section {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Application Card */
.application-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    cursor: pointer;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.application-image {
    width: 300px;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.application-card:hover .application-image img {
    transform: scale(1.05);
}

.application-content {
    flex: 1;
    padding: 30px 30px 30px 0;
}

.application-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.application-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .banner{
        height: 360rem;
    }
    .banner-title{
        font-size: 28px;
    }
    .application-section{
        padding: 30px 0;
    }
    .application-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .application-image {
        width: 145px;
        height: 120px;
        flex-shrink: 0;
        overflow: hidden;
    }
    .application-content{
        height: 120px;
        padding: 10px 10px 10px 0;
    }
    .application-title{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 400;
        font-size: 18px;
    }
    .application-description{
        -webkit-line-clamp: 2;
    }
}
.pagination{
    text-align: center;
    margin-top: 30px;
}