* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f6fc;
    font-family: 'Poppins', sans-serif;
    background-image: url('../images/hero-bg-1.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    color: #343c4d;
    position: relative;
}

p {
    font-weight: 300 !important;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2 !important;
}


body::before {
    content: "";
    position: fixed;
    top: 120px;
    left: 0;
    width: 280px;
    height: 280px;
    background: url('../images/sec-orange-shape.png') no-repeat left top;
    background-size: contain;

    pointer-events: none;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    bottom: 80px;
    right: 0;
    width: 260px;
    height: 260px;
    background: url('../images/sec-purple-shape.png') no-repeat right bottom;
    background-size: contain;

    pointer-events: none;
    z-index: 0;
}

.fx_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.fx_header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fx_logo a {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.fx_logo span {
    text-transform: uppercase;
    font-size: 21px;
    color: #01022E;
    font-weight: 700;
}

.fx_logo img {
    max-height: 48px;
    width: auto;
}

.fx_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fx_menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.fx_menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #01022E;
    transition: 0.2s;
    font-size: 16px;
}

.fx_menu li a:hover {
    color: #4e2fda;
}

.fx_btn_get {
    background-color: #4e2fda;
    padding: 10px 28px;
    border-radius: 30px;
    color: white !important;
    font-weight: 600;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.fx_btn_get:hover {
    background-color: #2f1b9e;
    transform: translateY(-2px);
}


.fx_mobile_toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #01022E;
}


.fx_banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0 60px;
    flex-wrap: wrap;
}

.fx_banner_left {
    flex: 1;
}

.fx_subtitle {
    display: inline-block;
    background-color: #e7e2ff;
    color: #4e2fda;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 30px;
}

.fx_banner_left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #01022E;
    font-weight: 700;
    margin-bottom: 20px;
}

.fx_banner_left p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #343c4d;
    max-width: 90%;
}

.fx_btn_group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.fx_btn_primary {
    background-color: #4e2fda;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.fx_btn_primary i {
    font-size: 14px;
    transition: transform 0.2s;
}

.fx_btn_primary:hover {
    background-color: #2f1b9e;
}

.fx_btn_primary:hover i {
    transform: translateX(5px);
}

.fx_btn_secondary {
    background-color: #F5F6FC;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: #4e2fda;
    text-decoration: none;
    border: 1px solid #b8bbc1;
    transition: 0.2s;
}

.fx_btn_secondary:hover {
    background-color: #e9ecf9;
}

.fx_banner_right {
    flex: 1;
    text-align: center;
}

.fx_banner_right img {
    max-width: 100%;
    width: 90%;
    border-radius: 20px;
}


.fx_section {
    padding: 70px 0 40px;
}

.fx_section_title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400 !important;
}

.fx_section_title .fx_subtitle_center {
    background-color: #e7e2ff;
    color: #4e2fda;
    display: inline-block;
    text-transform: uppercase;
    padding: 6px 22px;
    font-weight: 400 !important;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.fx_section_title h2 {
    font-size: 36px;
    color: #01022E;
    font-weight: 700;
}

.fx_grid_3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.fx_feature_card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
    padding: 35px 25px;
    text-align: center;
    flex: 1 1 300px;
    transition: all 0.2s;
}

.fx_feature_card:hover {
    transform: translateY(-6px);
}

.fx_feature_card img {
    width: 70px;
    margin-bottom: 10px;
}

.fx_feature_card h3 {
    font-size: 22px;
    color: #01022E;
    margin-bottom: 12px;
    font-weight: 600;
}

.fx_feature_card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fx_link_icon {
    text-decoration: none;
    font-weight: 600;
    color: #4e2fda;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.fx_how_bg {
    background-color: #4e2fda;
    border-radius: 30px;
    margin: 50px 0;
    padding: 60px 30px;
}

.fx_how_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.fx_how_step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 30px 25px;
    flex: 1 1 260px;
    text-align: center;
    color: white;
}

.fx_step_number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.4;
    margin-bottom: 10px;
}

.fx_how_step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.fx_how_step p {
    font-size: 15px;
    opacity: 0.9;
}


.fx_two_col {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.fx_col_text {
    flex: 1;
}

.fx_col_media {
    flex: 1;
}

.fx_col_media img {
    width: 100%;
    border-radius: 20px;
}

.fx_list_check {
    list-style: none;
    margin-top: 20px;
}

.fx_list_check li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.fx_list_check li i {
    color: #4e2fda;
    font-size: 20px;
}


.fx_cta {
    background-color: #4e2fda;
    border-radius: 20px;
    padding: 50px 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 60px;
}

.fx_cta_left h2 {
    font-size: 28px;
    color: white;
    font-weight: 500;
    margin-bottom: 12px;
}

.fx_cta_left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.fx_cta_right .fx_btn_secondary {
    background: white;
    color: #4e2fda;
    border: none;
    font-weight: 500;
    padding: 14px 40px;
    display: inline-block;
}

.fx_cta_right .fx_btn_secondary:hover {
    background: #f0f0ff;
}


.fx_footer {
    background-color: #040426;
    padding: 60px 0 30px;
    color: #cdd0e6;
    margin-top: 50px;
}

.fx_footer_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.fx_footer_col {
    flex: 1;
    min-width: 180px;
}

.fx_footer_logo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.fx_footer_logo img {
    max-height: 45px;

}

.fx_footer_logo span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 21px;
}

.fx_footer_col p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
}

.fx_footer_col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.fx_footer_menu {
    list-style: none;
}

.fx_footer_menu li {
    margin-bottom: 12px;
}

.fx_footer_menu li a {
    text-decoration: none;
    color: #cdd0e6;
    transition: 0.2s;
}

.fx_footer_menu li a:hover {
    color: white;
}

.fx_contact_info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fx_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.fx_legal_links {
    display: flex;
    gap: 12px 28px;
    flex-wrap: wrap;
}

.fx_legal_links a {
    color: #cdd0e6;
    text-decoration: none;
}

.fx_legal_links a:hover {
    color: white;
}

.fx_page_header {
    margin-bottom: 48px;
}

.fx_page_title {
    font-size: 44px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 16px;
    line-height: 1.2;
}

.fx_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.fx_breadcrumb a {
    color: #4e2fda;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.fx_breadcrumb a:hover {
    color: #2f1b9e;
}

.fx_breadcrumb span {
    color: #6c757d;
}

.fx_breadcrumb i {
    font-size: 12px;
    color: #adb5bd;
}


.fx_contact_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 40px 0 60px;
}

.fx_contact_info {
    flex: 1;

}

.fx_contact_form_wrapper {
    flex: 1;

}


.fx_info_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
    margin-bottom: 28px;
    transition: transform 0.2s;
}

.fx_info_card:hover {
    transform: translateY(-3px);
}

.fx_info_icon {
    width: 56px;
    height: 56px;
    background: #e7e2ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.fx_info_icon i {
    font-size: 28px;
    color: #4e2fda;
}

.fx_info_card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 16px;
}

.fx_info_detail {
    color: #343c4d;
    line-height: 1.6;
    font-size: 16px;
}

.fx_info_detail p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fx_info_detail a {
    color: #343c4d;
    text-decoration: none;
    transition: color 0.2s;
}

.fx_info_detail a:hover {
    color: #4e2fda;
}

.fx_hours_list {
    list-style: none;
    margin-top: 8px;
}

.fx_hours_list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f8;
}

.fx_hours_list li span:first-child {
    font-weight: 500;
    color: #01022E;
}

.fx_hours_list li span:last-child {
    color: #5a667e;
}


.fx_form_container {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
}

.fx_form_container h3 {
    font-size: 28px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 8px;
}

.fx_form_container>p {
    color: #6c757d;
    margin-bottom: 28px;
    font-size: 15px;
}

.fx_form_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fx_form_group {
    flex: 1;
    min-width: 160px;
    margin-bottom: 20px;
}

.fx_form_group_full {
    width: 100%;
    margin-bottom: 20px;
}

.fx_form_group label,
.fx_form_group_full label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4e2fda;
    margin-bottom: 8px;
}

.fx_form_group input,
.fx_form_group_full input,
.fx_form_group_full select,
.fx_form_group_full textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e9ecf5;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
    background-color: #fefefe;
    color: #01022E;
}

.fx_form_group input:focus,
.fx_form_group_full input:focus,
.fx_form_group_full textarea:focus,
.fx_form_group_full select:focus {
    outline: none;
    border-color: #4e2fda;
    box-shadow: 0 0 0 3px rgba(78, 47, 218, 0.1);
}

.fx_form_group_full textarea {
    resize: vertical;
    min-height: 120px;
}

.fx_submit_btn {
    background-color: #4e2fda;
    border: none;
    border-radius: 40px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
}

.fx_submit_btn i {
    font-size: 14px;
    transition: transform 0.2s;
}

.fx_submit_btn:hover {
    background-color: #2f1b9e;
    transform: translateY(-2px);
}

.fx_submit_btn:hover i {
    transform: translateX(5px);
}

.fx_thanks_message {
    margin-top: 24px;
    padding: 16px 20px;
    background: #e7f5e9;
    border-radius: 20px;
    color: #2b6e3c;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    border-left: 4px solid #4e2fda;
}

.fx_thanks_message i {
    font-size: 22px;
    color: #4e2fda;
}

.fx_thanks_message.show {
    display: flex;
}


@media (max-width: 768px) {
    .fx_page_title {
        font-size: 32px;
    }

    .fx_contact_grid {
        flex-direction: column;
        gap: 35px;
    }

    .fx_form_container {
        padding: 28px;
    }

    .fx_info_card {
        padding: 24px;
    }
}


.fx_contact_section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0px 60px;
}


.fx_section_divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e4f0, transparent);
    margin: 20px 0 10px;
}


.fx_about_row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.fx_about_row_reverse {
    flex-direction: row-reverse;
}

.fx_about_text {
    flex: 1;
    min-width: 280px;
}

.fx_about_media {
    flex: 1;
    min-width: 280px;
}

.fx_about_media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s;
}

.fx_about_media img:hover {
    transform: scale(1.02);
}

.fx_section_tag {
    display: inline-block;
    background-color: #e7e2ff;
    color: #4e2fda;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 12px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.fx_about_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.fx_about_text p {
    font-size: 16px;
    line-height: 1.6;
    color: #343c4d;
    margin-bottom: 20px;
}

.fx_list_check {
    list-style: none;
    margin-top: 24px;
}

.fx_list_check li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #1e293b;
}

.fx_list_check li i {
    color: #4e2fda;
    font-size: 20px;
}


.fx_stats_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin: 50px 0 30px;
}

.fx_stat_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
    transition: all 0.2s;
}

.fx_stat_card:hover {
    transform: translateY(-5px);
}

.fx_stat_number {
    font-size: 42px;
    font-weight: 800;
    color: #4e2fda;
    margin-bottom: 12px;
    line-height: 1;
}

.fx_stat_label {
    font-size: 15px;
    font-weight: 500;
    color: #01022E;
    letter-spacing: 0.3px;
}


.fx_mission_block {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 48px 40px;
    margin: 40px 0 20px;
    text-align: center;
    border: 1px solid #eef2ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.fx_mission_icon {
    width: 70px;
    height: 70px;
    background: #e7e2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.fx_mission_icon i {
    font-size: 32px;
    color: #4e2fda;
}

.fx_mission_block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 16px;
}

.fx_mission_block p {
    font-size: 18px;
    line-height: 1.5;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .fx_page_title {
        font-size: 32px;
    }

    .fx_about_row {
        gap: 35px;
        margin-bottom: 55px;
    }

    .fx_about_text h2 {
        font-size: 28px;
    }

    .fx_stats_grid {
        gap: 20px;
    }

    .fx_stat_card {
        padding: 24px 16px;
    }

    .fx_stat_number {
        font-size: 32px;
    }

    .fx_mission_block {
        padding: 32px 24px;
    }

    .fx_mission_block h3 {
        font-size: 24px;
    }

    .fx_mission_block p {
        font-size: 16px;
    }
}


.fx_about_section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0px 60px;
}


.fx_section_divider {
    height: 2px;
    background: linear-gradient(90deg, #e7e2ff, #4e2fda20, #e7e2ff);
    margin: 30px 0 20px;
    border-radius: 5px;
}

.fx_features_intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.fx_section_tag {
    display: inline-block;
    background-color: #e7e2ff;
    color: #4e2fda;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 12px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.fx_features_intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.fx_features_intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #343c4d;
}


.fx_features_grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fx_feature_card_detailed {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.fx_feature_card_detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px 0 #e0e3f0;
}

.fx_feature_icon_large {
    flex: 0 0 100px;
    text-align: center;
}

.fx_feature_icon_large img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.fx_feature_icon_large i {
    font-size: 72px;
    color: #4e2fda;
}

.fx_feature_content {
    flex: 1;
    min-width: 240px;
}

.fx_feature_content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #01022E;
    margin-bottom: 16px;
}

.fx_feature_content p {
    font-size: 16px;
    line-height: 1.6;
    color: #343c4d;
    margin-bottom: 20px;
}

.fx_feature_list {
    list-style: none;
    margin-top: 16px;
}

.fx_feature_list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a5568;
}

.fx_feature_list li i {
    color: #4e2fda;
    font-size: 16px;
    width: 20px;
}

.fx_feature_badge {
    display: inline-block;
    background: #e7e2ff;
    color: #4e2fda;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}


@media (max-width: 768px) {
    .fx_page_title {
        font-size: 32px;
    }

    .fx_features_intro h2 {
        font-size: 28px;
    }

    .fx_features_intro p {
        font-size: 16px;
    }

    .fx_feature_card_detailed {
        padding: 28px;
        flex-direction: column;
        text-align: center;
    }

    .fx_feature_icon_large {
        flex: 0 0 auto;
    }

    .fx_feature_content h3 {
        font-size: 22px;
    }

    .fx_feature_list li {
        justify-content: center;
    }
}


.fx_features_section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0px 70px;
}


.fx_section_divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e4f0, transparent);
    margin: 20px 0 0;
}


.fx_legal_card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 11px 30px 0 #e9eaf2;
    padding: 48px;
    margin-bottom: 40px;
}

.fx_last_updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f8;
}

.fx_legal_content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #01022E;
    margin: 32px 0 16px 0;
}

.fx_legal_content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #01022E;
    margin: 28px 0 12px 0;
}

.fx_legal_content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4e2fda;
    margin: 20px 0 10px 0;
}

.fx_legal_content p {
    font-size: 16px;
    line-height: 1.7;
    color: #343c4d;
    margin-bottom: 16px;
}

.fx_legal_content ul,
.fx_legal_content ol {
    margin: 16px 0 20px 24px;
    color: #343c4d;
    line-height: 1.7;
}

.fx_legal_content li {
    margin-bottom: 8px;
    font-size: 15px;
}

.fx_legal_content a {
    color: #4e2fda;
    text-decoration: none;
    font-weight: 500;
}

.fx_legal_content a:hover {
    text-decoration: underline;
}

.fx_contact_info_small {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 24px 28px;
    margin: 32px 0 20px;
    border-left: 4px solid #4e2fda;
}

.fx_contact_info_small h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #01022E;
}

.fx_contact_info_small p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fx_contact_info_small i {
    color: #4e2fda;
    width: 24px;
    font-size: 16px;
}


.fx_cookie_table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.fx_cookie_table th,
.fx_cookie_table td {
    border: 1px solid #e9ecf5;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.fx_cookie_table th {
    background: #f5f6fc;
    font-weight: 600;
    color: #01022E;
}


@media (max-width: 768px) {
    .fx_page_title {
        font-size: 32px;
    }

    .fx_legal_card {
        padding: 28px;
    }

    .fx_legal_content h2 {
        font-size: 24px;
    }

    .fx_legal_content h3 {
        font-size: 20px;
    }

    .fx_cookie_table {
        font-size: 12px;
    }

    .fx_cookie_table th,
    .fx_cookie_table td {
        padding: 8px 10px;
    }
}


.fx_legal_section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0px 70px;
}






























@media (max-width: 992px) {
    .fx_banner_left h1 {
        font-size: 36px;
    }

    .fx_nav {
        gap: 20px;
    }

    .fx_menu {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .fx_mobile_toggle {
        display: block;
    }

    .fx_nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 25px 30px;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 32px;
    }

    .fx_nav.active {
        left: 0;
    }

    .fx_menu {
        flex-direction: column;
        gap: 22px;
    }

    .fx_btn_get {
        margin-top: 10px;
    }

    .fx_banner,
    .fx_two_col {
        flex-direction: column !important;
    }

    .fx_banner_left p {
        max-width: 100%;
    }

    .fx_cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .fx_footer_grid {
        flex-direction: column;
    }

    .fx_footer_bottom {
        flex-direction: column;
        gap: 15px;

    }
}

@media(max-width: 480px) {
    .fx_banner_right img {
        width: 100%;
    }

    .fx_contact_section {
        padding: 20px 0;
    }
}