* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F4F6F7;
    color: #053D58;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.navbar {
    background-color: #FFFFFF;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #053D58;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #0B7EB2;
}

.nav-menu .btn-nav-login {
    color: #0B7EB2;
}

.nav-menu .btn-nav-signup {
    background-color: #0B7EB2;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-menu .btn-nav-signup:hover {
    background-color: #07587D;
    color: #FFFFFF;
}

.hero-section-index {
    background-color: #053D58;
    color: #FFFFFF;
    padding: 100px 50px;
    text-align: center;
    border-bottom: 6px solid #4CB4E3;
}

.hero-content-index {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section-index h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
    color: #F4F6F7;
}

.hero-section-index p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: #BDC3C7;
}

.hero-actions-index {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #F39C12;
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background-color: #BA7609;
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: #053D58;
}


.content-section-index {
    padding: 80px 50px;
    flex-grow: 1;
}

.content-container-index {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    color: #0B7EB2;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: #7F8C8D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.flowchart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.flow-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.client-card {
    border-top: 5px solid #F39C12;
}

.advisor-card {
    border-top: 5px solid #0B7EB2;
}

.card-title {
    font-size: 24px;
    color: #053D58;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}


.flow-path {
    position: relative;
    flex-grow: 1;
    margin-bottom: 30px;
}


.flow-path::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 30px;
    left: 20px;
    width: 2px;
    background-color: #EAECEE;
    z-index: 1;
}

.flow-step {
    display: flex;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px #FFFFFF;
}

.client-card .step-indicator {
    background-color: #F39C12;
}

.advisor-card .step-indicator {
    background-color: #0B7EB2;
}

.step-content {
    margin-left: 20px;
    padding-top: 8px;
}

.step-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #053D58;
}

.step-content p {
    margin: 0;
    font-size: 15px;
    color: #7F8C8D;
    line-height: 1.5;
}

.card-action {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #EAECEE;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.client-card .btn-learn-more {
    background-color: #FDF2E3;
    color: #F39C12;
    border: 1px solid #F39C12;
}

.client-card .btn-learn-more:hover {
    background-color: #F39C12;
    color: #FFFFFF;
}

.advisor-card .btn-learn-more {
    background-color: #E6F2F7;
    color: #0B7EB2;
    border: 1px solid #0B7EB2;
}

.advisor-card .btn-learn-more:hover {
    background-color: #0B7EB2;
    color: #FFFFFF;
}

.advantage-section {
    background-color: #E8F6F3;
    border-left: 4px solid #16A085;
    padding: 40px;
    border-radius: 4px 8px 8px 4px;
    margin-bottom: 40px;
}

.advantage-title {
    font-size: 20px;
    color: #16A085;
    margin-top: 0;
    margin-bottom: 20px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.advantage-item h4 {
    color: #053D58;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.advantage-item p {
    color: #053D58;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}


.closing-statement {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #0B7EB2;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #053D58;
    color: #F4F6F7;
    padding: 50px 50px 20px 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 4px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #4CB4E3;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #BDC3C7;
    line-height: 1.6;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #053D58;
    border-radius: 30px;
    transition: all .3s ease;
}


.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



@media (max-width: 991px) {

    .navbar {
        padding: 15px 25px;
    }

    .hero-section-index {
        padding: 80px 30px;
    }

    .hero-section-index h1 {
        font-size: 42px;
    }

    .hero-section-index p {
        font-size: 18px;
    }

    .content-section-index {
        padding: 60px 30px;
    }

    .flowchart-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}



@media (max-width: 767px) {

    .navbar {
        padding: 15px 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container img {
        height: 42px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 15px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: .35s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-top: 2px solid #0b7eb2;
    }

    .card-action {
        padding-bottom: 6px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .nav-menu li:last-child {
        border: none;
    }

    .nav-menu a {
        display: block;
        padding: 14px 20px;
        width: 100%;
        font-size: 15px;
    }

    .nav-menu .btn-nav-signup {
        border-radius: 0;
        margin-top: 5px;
    }

    .hero-section-index {
        padding: 70px 20px;
    }

    .hero-section-index h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-section-index p {
        font-size: 16px;
    }

    .hero-actions-index {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .content-section-index {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .flowchart-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .flow-card {
        padding: 25px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}




@media (max-width:575px) {

    .navbar {
        padding: 12px 15px;
    }

    .logo-container img {
        height: 38px;
    }

    .hero-section-index {
        padding: 60px 15px;
    }

    .hero-section-index h1 {
        font-size: 28px;
    }

    .hero-section-index p {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .intro-text {
        font-size: 15px;
    }

    .flow-card {
        padding: 20px;
    }

    .card-title {
        font-size: 22px;
    }

    .step-content {
        margin-left: 15px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 14px;
    }

    .advantage-section {
        padding: 20px;
    }

    .closing-statement {
        font-size: 20px;
        line-height: 1.4;
    }

    .site-footer {
        padding: 40px 15px 20px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-legal {
        font-size: 11px;
    }
}



@media (max-width:400px) {

    .hero-section-index h1 {
        font-size: 24px;
    }

    .hero-section-index p {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .flow-card {
        padding: 15px;
    }

    .step-indicator {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .flow-path::before {
        left: 17px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}



/*contact-us*/


.hero-section {
    background-color: #053D58;
    color: #FFFFFF;
    padding: 80px 50px;
    text-align: center;
    border-bottom: 6px solid #16A085;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 42px;
    margin: 0 0 20px 0;
    color: #F4F6F7;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #BDC3C7;
}


.content-section {
    padding: 60px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-card {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 750px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 28px;
    color: #0B7EB2;
    margin: 0 0 10px 0;
}

.contact-header p {
    font-size: 15px;
    color: #7F8C8D;
    margin: 0;
    line-height: 1.5;
}


.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 100%;
    margin-bottom: 25px;
}

.form-label {
    font-size: 14px;
    font-weight: bold;
    color: #053D58;
    margin-bottom: 8px;
}

.form-label span.req {
    color: #F39C12;
}

.form-control {
    padding: 14px 16px;
    border: 1px solid #BDC3C7;
    border-radius: 4px;
    font-size: 15px;
    color: #053D58;
    font-family: Arial, sans-serif;
    transition: all 0.2s ease;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-control:focus {
    outline: none;
    border-color: #0B7EB2;
    box-shadow: 0 0 0 2px rgba(11, 126, 178, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}


.btn-contact {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary-contact {
    background-color: #0B7EB2;
    color: #FFFFFF;
}

.btn-primary-contact:hover {
    background-color: #07587D;
}

/*responisveness*/
@media (max-width: 991px) {

    .hero-section {
        padding: 70px 30px;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .contact-card {
        max-width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {

    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 16px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group {
        min-width: 100%;
    }

    .form-group.full-width {
        margin-bottom: 15px;
    }

    .form-actions {
        justify-content: center;
    }

    .btn-contact {
        width: 100%;
    }
}


@media (max-width: 575px) {

    .hero-section {
        padding: 50px 15px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 15px;
    }

    .contact-card {
        padding: 25px 15px;
        border-radius: 6px;
    }

    .contact-header h2 {
        font-size: 22px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 120px;
    }

    .btn-contact {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .contact-header h2 {
        font-size: 20px;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-control {
        font-size: 13px;
    }
}




/*client-survey*/

.survey-header {
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #0B7EB2;
}

.survey-header img {
    height: 38px;
    width: auto;
}

.content-section-survey {
    padding: 60px 20px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


.survey-card-survey {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 700px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.survey-intro-survey {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EAECEE;
}

.survey-intro-survey h1 {
    font-size: 28px;
    color: #0B7EB2;
    margin: 0 0 10px 0;
}

.survey-intro-survey p {
    font-size: 16px;
    color: #7F8C8D;
    margin: 0;
    line-height: 1.5;
}

.question-block {
    margin-bottom: 40px;
}

.question-title {
    font-size: 16px;
    font-weight: bold;
    color: #053D58;
    margin-bottom: 15px;
}

.question-title span.req {
    color: #F39C12;
}


.scale-1-5 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #7F8C8D;
    text-transform: uppercase;
    font-weight: bold;
}

.scale-1-5 label {
    flex: 1;
    cursor: pointer;
}

.scale-1-5 input[type="radio"] {
    display: none;
}

.scale-1-5 span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    background-color: #F9FAFB;
    border: 1px solid #BDC3C7;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #053D58;
    transition: all 0.2s ease;
}

.scale-1-5 input[type="radio"]:checked+span {
    background-color: #0B7EB2;
    /* Zabalik Blue */
    color: #FFFFFF;
    border-color: #0B7EB2;
    box-shadow: 0 4px 10px rgba(11, 126, 178, 0.2);
}

.scale-1-5 label:hover span {
    border-color: #0B7EB2;
}


.scale-0-10 {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.scale-0-10 label {
    flex: 1;
    cursor: pointer;
}

.scale-0-10 input[type="radio"] {
    display: none;
}

.scale-0-10 span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #F9FAFB;
    border: 1px solid #BDC3C7;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    color: #053D58;
    transition: all 0.2s ease;
}

.scale-0-10 input[type="radio"]:checked+span {
    background-color: #F39C12;
    color: #FFFFFF;
    border-color: #F39C12;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.2);
}

.scale-0-10 label:hover span {
    border-color: #F39C12;
}


.form-control-survey {
    width: 100%;
    padding: 15px;
    border: 1px solid #BDC3C7;
    border-radius: 4px;
    font-size: 15px;
    color: #053D58;
    font-family: Arial, sans-serif;
    resize: vertical;
    min-height: 100px;
}

.form-control-survey:focus {
    outline: none;
    border-color: #0B7EB2;
    box-shadow: 0 0 0 2px rgba(11, 126, 178, 0.1);
}

.form-actions-survey {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #EAECEE;
}

.btn-survey {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    background-color: #16A085;
    /* Passport Teal for positive submission */
    color: #FFFFFF;
}

.btn-survey:hover {
    background-color: #117A65;
}


.site-footer-survey {
    text-align: center;
    padding: 20px;
    color: #7F8C8D;
    font-size: 12px;
}

/*responisve*/
@media (max-width: 991px) {

    .survey-card-survey {
        max-width: 100%;
        padding: 40px 30px;
    }

    .survey-intro-survey h1 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {

    .survey-header {
        padding: 15px;
    }

    .survey-header img {
        height: 34px;
    }

    .content-section-survey {
        padding: 40px 15px;
    }

    .survey-card-survey {
        padding: 30px 20px;
    }

    .survey-intro-survey {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .survey-intro-survey h1 {
        font-size: 24px;
    }

    .survey-intro-survey p {
        font-size: 15px;
    }

    .question-block {
        margin-bottom: 30px;
    }

    .question-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .btn-survey {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .survey-card-survey {
        padding: 25px 15px;
    }

    .survey-intro-survey h1 {
        font-size: 22px;
    }

    .survey-intro-survey p {
        font-size: 14px;
    }

    .survey-header img {
        height: 30px;
    }

    .question-title {
        font-size: 14px;
    }

    .scale-1-5 {
        gap: 6px;
    }

    .scale-1-5 span {
        height: 40px;
        font-size: 14px;
    }

    .scale-labels {
        font-size: 10px;
        gap: 10px;
    }

    .scale-0-10 {
        gap: 3px;
        flex-wrap: wrap;
    }

    .scale-0-10 label {
        flex: 0 0 calc(20% - 3px);
    }

    .scale-0-10 span {
        height: 38px;
        font-size: 13px;
    }

    .form-control-survey {
        padding: 12px;
        font-size: 14px;
        min-height: 120px;
    }

    .btn-survey {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}


@media (max-width: 400px) {

    .survey-card-survey {
        padding: 20px 12px;
    }

    .survey-intro-survey h1 {
        font-size: 20px;
    }

    .survey-intro-survey p {
        font-size: 13px;
    }

    .question-title {
        font-size: 13px;
    }

    .scale-1-5 span {
        height: 36px;
        font-size: 13px;
    }

    .scale-0-10 label {
        flex: 0 0 calc(25% - 3px);
    }

    .scale-0-10 span {
        height: 34px;
        font-size: 12px;
    }

    .scale-labels {
        font-size: 9px;
    }

    .btn-survey {
        font-size: 14px;
    }
}





/*for-advisor*/
.hero-section-advisor {
    background-color: #053D58;
    color: #FFFFFF;
    padding: 80px 50px;
    text-align: center;
    border-bottom: 6px solid #0B7EB2;
}

.hero-section-advisor h1 {
    font-size: 42px;
    margin: 0 0 20px 0;
    color: #F4F6F7;
}

.hero-section-advisor p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #BDC3C7;
}

.hero-content-advisor {
    max-width: 800px;
    margin: 0 auto;
}

.content-section-advisor {
    padding: 60px 50px;
    flex-grow: 1;
}

.content-container-advisor {
    max-width: 1000px;
    margin: 0 auto;
}

.pilot-notice-advisor {
    background-color: #FFF3E0;
    border-left: 5px solid #F39C12;
    padding: 25px 30px;
    border-radius: 4px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pilot-icon-advisor {
    font-size: 24px;
    line-height: 1;
}

.pilot-text-advisor h3 {
    margin: 0 0 8px 0;
    color: #BA7609;
    font-size: 18px;
}

.pilot-text-advisor p {
    margin: 0;
    color: #053D58;
    font-size: 15px;
    line-height: 1.5;
}


.intro-box-advisor {
    text-align: center;
    margin-bottom: 50px;
}

.intro-box-advisor h2 {
    font-size: 32px;
    color: #0B7EB2;
    margin-bottom: 15px;
}

.intro-box-advisor p {
    font-size: 18px;
    color: #7F8C8D;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0B7EB2;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #0B7EB2;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    color: #053D58;
    margin: 0 0 15px 0;
}

.step-card p {
    font-size: 15px;
    color: #7F8C8D;
    line-height: 1.6;
    margin: 0;
}


.cta-section-advisor {
    text-align: center;
    background-color: #E8F6F3;
    border: 1px solid #16A085;
    padding: 50px 30px;
    border-radius: 8px;
}

.cta-section-advisor h2 {
    color: #16A085;
    margin: 0 0 15px 0;
    font-size: 26px;
}

.cta-section-advisor p {
    color: #053D58;
    font-size: 16px;
    margin: 0 0 30px 0;
}

.btn-advisor {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary-advisor {
    background-color: #F39C12;
    color: #FFFFFF;
    border: none;
}

.btn-primary-advisor:hover {
    background-color: #BA7609;
}

/*responsive*/

@media (max-width: 991px) {

    .hero-section-advisor {
        padding: 70px 30px;
    }

    .hero-section-advisor h1 {
        font-size: 38px;
    }

    .content-section-advisor {
        padding: 50px 30px;
    }

    .intro-box-advisor h2 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {

    .hero-section-advisor {
        padding: 60px 20px;
    }

    .hero-section-advisor h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-section-advisor p {
        font-size: 16px;
    }

    .content-section-advisor {
        padding: 40px 20px;
    }

    .pilot-notice-advisor {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .pilot-icon-advisor {
        font-size: 22px;
    }

    .pilot-text-advisor h3 {
        font-size: 17px;
    }

    .pilot-text-advisor p {
        font-size: 14px;
    }

    .intro-box-advisor {
        margin-bottom: 40px;
    }

    .intro-box-advisor h2 {
        font-size: 26px;
    }

    .intro-box-advisor p {
        font-size: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 25px;
    }

    .cta-section-advisor {
        padding: 35px 20px;
    }

    .cta-section-advisor h2 {
        font-size: 24px;
    }

    .btn-advisor {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 575px) {

    .hero-section-advisor {
        padding: 50px 15px;
    }

    .hero-section-advisor h1 {
        font-size: 28px;
    }

    .hero-section-advisor p {
        font-size: 15px;
    }

    .content-section-advisor {
        padding: 35px 15px;
    }

    .pilot-notice-advisor {
        padding: 18px 15px;
    }

    .intro-box-advisor h2 {
        font-size: 24px;
    }

    .intro-box-advisor p {
        font-size: 15px;
    }

    .step-card {
        padding: 20px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 14px;
    }

    .cta-section-advisor {
        padding: 30px 15px;
    }

    .cta-section-advisor h2 {
        font-size: 22px;
    }

    .cta-section-advisor p {
        font-size: 15px;
    }

    .btn-advisor {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}


@media (max-width: 400px) {

    .hero-section-advisor h1 {
        font-size: 24px;
    }

    .hero-section-advisor p {
        font-size: 14px;
    }

    .intro-box-advisor h2 {
        font-size: 20px;
    }

    .intro-box-advisor p {
        font-size: 14px;
    }

    .pilot-text-advisor h3 {
        font-size: 16px;
    }

    .pilot-text-advisor p {
        font-size: 13px;
    }

    .step-card {
        padding: 15px;
    }

    .step-card h3 {
        font-size: 17px;
    }

    .step-card p {
        font-size: 13px;
    }

    .cta-section-advisor h2 {
        font-size: 20px;
    }

    .cta-section-advisor p {
        font-size: 14px;
    }
}







/*for-client*/
.hero-section-client {
    background-color: #053D58;
    color: #FFFFFF;
    padding: 80px 50px;
    text-align: center;
    border-bottom: 6px solid #F39C12;
}

.hero-content-client {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section-client h1 {
    font-size: 42px;
    margin: 0 0 20px 0;
    color: #F4F6F7;
}

.hero-section-client p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #BDC3C7;
}

.content-section-client {
    padding: 60px 50px;
    flex-grow: 1;
}

.content-container-client {
    max-width: 1000px;
    margin: 0 auto;
}


.pilot-notice-client {
    background-color: #FFF3E0;
    border-left: 5px solid #F39C12;
    padding: 25px 30px;
    border-radius: 4px;
    margin-bottom: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pilot-icon-client {
    font-size: 24px;
    line-height: 1;
}

.pilot-text-client h3 {
    margin: 0 0 8px 0;
    color: #BA7609;
    font-size: 18px;
}

.pilot-text-client p {
    margin: 0;
    color: #053D58;
    font-size: 15px;
    line-height: 1.5;
}

.intro-box-client {
    text-align: center;
    margin-bottom: 50px;
}

.intro-box-client h2 {
    font-size: 32px;
    color: #0B7EB2;
    margin-bottom: 15px;
}

.intro-box-client p {
    font-size: 18px;
    color: #7F8C8D;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid-client {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card-client {
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0B7EB2;
}

.step-number-client {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #0B7EB2;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.step-card-client h3 {
    font-size: 20px;
    color: #053D58;
    margin: 0 0 15px 0;
}

.step-card-client p {
    font-size: 15px;
    color: #7F8C8D;
    line-height: 1.6;
    margin: 0;
}


.cta-section-client {
    text-align: center;
    background-color: #E8F6F3;
    border: 1px solid #16A085;
    padding: 50px 30px;
    border-radius: 8px;
}

.cta-section-client h2 {
    color: #16A085;
    margin: 0 0 15px 0;
    font-size: 26px;
}

.cta-section-client p {
    color: #053D58;
    font-size: 16px;
    margin: 0 0 30px 0;
}

.btn-client {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary-client {
    background-color: #F39C12;
    color: #FFFFFF;
    border: none;
}

.btn-primary-client:hover {
    background-color: #BA7609;
}


/*policy-card*/
/* ===========================
   PRIVACY POLICY
=========================== */

.policy-card {
    background: #fff;
    width: 100%;
    max-width: 900px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-header h2 {
    font-size: 30px;
    color: #0B7EB2;
    margin-bottom: 10px;
}

.policy-header p {
    font-size: 16px;
    color: #7F8C8D;
    margin: 0;
    line-height: 1.5;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    color: #053D58;
    font-size: 22px;
    margin-bottom: 12px;
}

.policy-section p {
    color: #5f6b72;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 22px;
}

.policy-section ul li {
    margin-bottom: 10px;
    color: #5f6b72;
    line-height: 1.8;
}

.policy-update {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #7F8C8D;
    font-size: 14px;
}



/*about*/

.why-zabalik-section {
    background-color: #FFFFFF;
    padding: 70px 50px;
}

.why-zabalik-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-zabalik-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-zabalik-header span.eyebrow {
    display: inline-block;
    background-color: #E8F6F3;
    color: #16A085;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.why-zabalik-header h2 {
    font-size: 32px;
    color: #053D58;
    margin: 0 0 15px 0;
}

.why-zabalik-header p {
    font-size: 17px;
    color: #7F8C8D;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 35px 0;
    border-bottom: 1px solid #EAEFF1;
}

.why-row:last-child {
    border-bottom: none;
}

.why-row.reverse {
    flex-direction: row-reverse;
}

.why-icon-wrap {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #FFFFFF;
}

.why-row:nth-child(2) .why-icon-wrap {
    background-color: #0B7EB2;
}

.why-row:nth-child(3) .why-icon-wrap {
    background-color: #F39C12;
}

.why-row:nth-child(4) .why-icon-wrap {
    background-color: #16A085;
}

.why-row:nth-child(5) .why-icon-wrap {
    background-color: #053D58;
}

.why-row:nth-child(6) .why-icon-wrap {
    background-color: #4CB4E3;
}

.why-content {
    flex: 1;
}

.why-content .why-number {
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #A9B7BD;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.why-content h3 {
    font-size: 22px;
    color: #053D58;
    margin: 0 0 10px 0;
}

.why-content p {
    font-size: 15.5px;
    color: #7F8C8D;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:767px) {
    .policy-header p {
        font-size: 14px;
    }

    .policy-card {
        padding: 30px 20px;
    }

    .policy-header h2 {
        font-size: 25px;
    }

    .policy-section h3 {
        font-size: 20px;
    }

}

@media(max-width:575px) {

    .policy-card {
        padding: 25px 15px;
    }

    .policy-header h2 {
        font-size: 22px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 14px;
    }

}


/*responsive*/
@media (max-width: 991px) {

    .hero-section-client {
        padding: 70px 30px;
    }

    .hero-section-client h1 {
        font-size: 38px;
    }

    .content-section-client {
        padding: 50px 30px;
    }

    .intro-box-client h2 {
        font-size: 28px;
    }

    .steps-grid-client {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {

    .hero-section-client {
        padding: 60px 20px;
    }

    .hero-section-client h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-section-client p {
        font-size: 16px;
    }

    .content-section-client {
        padding: 40px 20px;
    }

    .pilot-notice-client {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .pilot-icon-client {
        font-size: 22px;
    }

    .pilot-text-client h3 {
        font-size: 17px;
    }

    .pilot-text-client p {
        font-size: 14px;
    }

    .intro-box-client {
        margin-bottom: 40px;
    }

    .intro-box-client h2 {
        font-size: 26px;
    }

    .intro-box-client p {
        font-size: 16px;
    }

    .steps-grid-client {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card-client {
        padding: 25px;
    }

    .cta-section-client {
        padding: 35px 20px;
    }

    .cta-section-client h2 {
        font-size: 24px;
    }

    .btn-client {
        width: 100%;
        text-align: center;
    }

    .why-zabalik-section {
        padding: 50px 25px;
    }

    .why-zabalik-header h2 {
        font-size: 24px;
    }

    .why-row,
    .why-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 0;
    }

    .why-icon-wrap {
        width: 90px;
        height: 90px;
        font-size: 34px;
        flex: 0 0 auto;
    }

    .why-content h3 {
        font-size: 19px;
    }
}


@media (max-width: 575px) {

    .hero-section-client {
        padding: 50px 15px;
    }

    .hero-section-client h1 {
        font-size: 28px;
    }

    .hero-section-client p {
        font-size: 15px;
    }

    .content-section-client {
        padding: 35px 15px;
    }

    .pilot-notice-client {
        padding: 18px 15px;
    }

    .intro-box-client h2 {
        font-size: 24px;
    }

    .intro-box-client p {
        font-size: 15px;
    }

    .step-card-client {
        padding: 20px;
    }

    .step-number-client {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .step-card-client h3 {
        font-size: 18px;
    }

    .step-card-client p {
        font-size: 14px;
    }

    .cta-section-client {
        padding: 30px 15px;
    }

    .cta-section-client h2 {
        font-size: 22px;
    }

    .cta-section-client p {
        font-size: 15px;
        line-height: 21px;
    }

    .btn-client {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .why-zabalik-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .why-zabalik-header p {
        font-size: 15px;
    }.why-zabalik-header span.eyebrow {
    font-size: 11px;
}
}


@media (max-width: 400px) {
    .why-zabalik-header h2 {
        font-size: 22px;
    }

    .why-zabalik-header p {
        font-size: 14px;
    }

    .why-content h3 {
        font-size: 17px;
    }

    .why-content p {
        font-size: 13.5px;
    }

    .hero-section-client h1 {
        font-size: 24px;
    }

    .hero-section-client p {
        font-size: 14px;
    }

    .intro-box-client h2 {
        font-size: 20px;
    }

    .intro-box-client p {
        font-size: 14px;
    }

    .pilot-text-client h3 {
        font-size: 16px;
    }

    .pilot-text-client p {
        font-size: 13px;
    }

    .step-card-client {
        padding: 15px;
    }

    .step-card-client h3 {
        font-size: 17px;
    }

    .step-card-client p {
        font-size: 13px;
    }

    .cta-section-client h2 {
        font-size: 20px;
    }

    .cta-section-client p {
        font-size: 14px;
    }
}