.inner-banner {
    background: linear-gradient(rgba(6, 25, 72, 0.9), rgba(6, 25, 72, 0.9)), url('../images/home/inner-banner.jpg') no-repeat center;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.section-spacing {
    padding: 100px 0;
}

.theme-title-one {
    margin-bottom: 60px;
}

.theme-title-one h2 {
    font-size: 2.5em;
    color: #061948;
    margin-bottom: 20px;
}

.theme-title-one p {
    font-size: 1.1em;
    color: #777;
}

.team-member {
    margin-bottom: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.team-member .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member .image-box img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.team-member:hover .image-box img {
    transform: scale(1.1);
}

.team-member .text-box h6 {
    font-size: 1.2em;
    color: #061948;
    margin-bottom: 5px;
}

.team-member .text-box span {
    display: block;
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.team-member .text-box p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.qrcode-container {
    display: none;
    margin: 15px auto;
    max-width: 128px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-qr {
    background: #061948;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-qr:hover {
    background: #0a2565;
}

@media (max-width: 991px) {
    .section-spacing {
        padding: 70px 0;
    }
    
    .theme-title-one h2 {
        font-size: 2em;
    }
}

@media (max-width: 767px) {
    .inner-banner {
        padding: 60px 0;
    }
    
    .section-spacing {
        padding: 50px 0;
    }
    
    .theme-title-one h2 {
        font-size: 1.8em;
    }
    
    .team-member {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}