.section-verify {
    position: relative;
    padding-bottom: 180px;
}

.verification-wrapper {
    width: 100%;
}

.verify-page .verification-container {
    margin: 0 auto;
}

.verify-first .verification-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.verify-first .verification-container h2 {
    background-image: url('/css/verify/background3.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 150px 0;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: #0a3942;
    border-radius: 6px;
    margin-bottom: 40px;
}

.verify-first .verification-container h2 span {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 60px 20px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.verify-first .verification-container h3,
.verify-first .verification-container p,
.verify-first .verification-process {
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: center;
    padding: 0 15px;
}

@media (max-width: 900px) {
    .verify-first .verification-container h2 {
        font-size: 28px;
        padding: 100px 0 100px 0;
    }

    .verify-first .verification-container h3 {
        font-size: 22px;
    }

    .verify-first .verification-container p,
    .verify-first .verification-process {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .verify-first .verification-container h2 {
        font-size: 24px;
        padding: 80px 0 80px 0;
    }

    .verify-first .verification-container h3 {
        font-size: 20px;
    }

    .verify-first .verification-container p,
    .verify-first .verification-process {
        font-size: 15px;
        padding: 0 10px;
    }
}

.verify-page .verification-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c00 100%);
    background-image: url('/css/verify/background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.verify-page.verify-c .verification-wrapper {
    background-image: url('/css/verify/background1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.verify-page .verification-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 60px 20px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.verify-page .verification-container h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.verify-page .verification-container p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.verify-page .verification-container strong {
    color: #003d7a;
    font-weight: 600;
}

.verify-page .verification-container em {
    color: #666;
}

.verify-page .verification-process {
    margin-top: 40px;
}

.verify-page .verification-process ul {
    list-style: none;
    padding: 0;
}

.verify-page .verification-process li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.verify-page .verification-process li::before {
    content: "•";
    color: #ff8c00;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .verify-page .verification-container {
        padding: 40px 30px;
    }

    .verify-page .verification-container h2 {
        font-size: 24px;
    }
}

.main-navigation {
    width: 100%;
    background: #fff;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-logo img {
    height: 55px;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 15px 25px;
    color: rgb(12,60,96);
    text-decoration: none;
    font-weight: 500;
}

.menu-sub ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    display: none;
    list-style-type: none;
    z-index: 999;
}

.menu-sub:hover ul {
    display: block;
}

@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
    }

    .menu-sub ul {
        position: relative;
    }
}

.price-request-navbar {
    padding: 30px 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.price-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.price-menu li a {
    display: block;
    background: #0b3b66;
    color: #fff;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

.price-menu li a:hover {
    background: #ff3b1f;
}

@media (max-width: 576px) {
    .price-menu li {
        flex: 0 0 100%;
    }

    .price-menu li a {
        width: 100%;
        text-align: center;
    }
}

footer {
    position: relative;
    z-index: 1;
}

.verification-container h2 strong
{
    font-size: 40px;
    color: #0a3942;
    font-weight: 400;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    line-height: 1.2;
}