* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0D1B2A;
    color: #ffffff;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: #0D1B2A;
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: auto;
    height: 80px;
    display: block;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 64px;
    list-style: none;
    margin: 0;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.burger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s ease;
    margin: 0 auto;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: rgba(20, 10, 20, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px 30px 30px;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 18px;
}

.mobile-menu nav ul li:last-child {
    margin-bottom: 0;
}

.mobile-menu nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.mobile-menu.active {
    display: block;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}



.hero-container {
    position: relative;
    z-index: 2;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 130px;
    padding-bottom: 70px;
}

.hero-row {
    min-height: calc(100vh - 200px);
}

.hero-content {
    max-width: 920px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-description {
    max-width: 980px;
    font-size: 28px;
    line-height: 1.42;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 34px;
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hero-list li {
    position: relative;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 14px;
    padding-left: 0;
}

.hero-list li::before {
    content: "-";
    margin-right: 0;
    display: inline-block;
}


.hero-form-card {
    max-width: 620px;
    margin-left: auto;
    background: #0d1b2a5f;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 40px;
    padding: 60px 34px 42px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-form-card h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-form-card p {
    max-width: 500px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    color: #ffffff;
}

.lead-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 36px;
    padding: 0 24px;
    background: #ffffff;
    color: #4a3d3d;
    font-size: 14px;
    font-weight: 300;
}

.form-group input::placeholder {
    color: #333;
    opacity: 1;
}

.phone-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
}

.phone-group .country-code {
    min-width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px 0 20px;
    color: #4a3d3d;
    font-size: 21px;
    white-space: nowrap;
}

.phone-group .flag {
    font-size: 30px;
    line-height: 1;
}

.phone-group .arrow {
    font-size: 11px;
    transform: translateY(-1px);
}

.phone-group .code {
    font-size: 14px;
}

.phone-group input {
    border-radius: 0;
    background: transparent;
    flex: 1;
    padding-left: 8px;
}

.submit-btn {
    width: 100%;
    min-height: 95px;
    border: none;
    border-radius: 34px;
    background: #1E7F5C;
    color: #f8eaea;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1c7655;
    transform: translateY(-2px);
}


.scroll-down {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scroll-down img {
    width: 24px;
    height: 24px;
    display: block;
}


.next-section {
    min-height: 140px;
    background: #f1e5e5;
}


@media (max-width: 1600px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 28px;
    }

    .hero-list li {
        font-size: 18px;
    }

    .desktop-nav a {
        font-size: 14px;
    }
}

@media (max-width: 1399px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 24px;
    }

    .hero-form-card {
        max-width: 560px;
    }

    .form-group input,
    .phone-group,
    .phone-group .country-code {
        height: 50px;
    }

}

@media (max-width: 1199px) {
    .header-container {
        padding: 10px 40px;
    }

    .hero-container {
        padding-left: 28px;
        padding-right: 28px;
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 22px;
        max-width: 100%;
    }

    .hero-form-card {
        margin-left: 0;
        max-width: 100%;
    }

    .desktop-nav ul {
        gap: 38px;
    }

    .desktop-nav a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .logo img {
        height: 80px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding-top: 110px;
        padding-bottom: 90px;
    }

    .hero-row {
        min-height: auto;
    }

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

    .hero-description {
        font-size: 20px;
        line-height: 1.5;
    }


    .hero-form-card {
        padding: 40px 24px 30px;
        border-radius: 30px;
    }

    .hero-form-card h2 {
        font-size: 28px;
    }

    .hero-form-card p {
        font-size: 18px;
    }

    .form-group input {
        font-size: 14px;
    }

    .phone-group .country-code {
        min-width: 110px;
        font-size: 18px;
    }

    .submit-btn {
        font-size: 21px;
        min-height: 78px;
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: 10px 20px;
    }

    .logo img {
        height: 80px;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-list li {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .hero-form-card {
        padding: 32px 18px 24px;
        border-radius: 24px;
    }

    .hero-form-card h2 {
        font-size: 26px;
    }

    .hero-form-card p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .form-group input,
    .phone-group,
    .phone-group .country-code {
        height: 50px;
    }

    .form-group input {
        padding: 0 18px;
        font-size: 14px;
        border-radius: 28px;
    }

    .phone-group {
        border-radius: 28px;
    }

    .phone-group .country-code {
        min-width: 96px;
        padding: 0 10px 0 12px;
        font-size: 15px;
    }

    .phone-group .flag {
        font-size: 22px;
    }


    .submit-btn {
        min-height: 62px;
        border-radius: 24px;
        font-size: 16px;
        padding: 14px;
    }

    .scroll-down {
        width: 56px;
        height: 56px;
    }

    .scroll-down img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-list li {
        font-size: 16px;
    }

    .hero-form-card h2 {
        font-size: 23px;
    }
}

.strategies-section {
    background: #ffffff;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.strategies-container {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1500px;
}

.strategies-header {
    max-width: 1080px;
    margin: 0 auto 34px;
}

.strategies-header h2 {
    font-size: 44px;
    line-height: 1.16;
    font-weight: 700;
    color: #333333;
    margin-bottom: 28px;
}

.strategies-header h3 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 300;
    color: #333333;
    margin-bottom: 22px;
}

.strategies-header p {
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.3;
    font-size: 30px;
    font-weight: 300;
    color: #333333;
}

.strategies-content-row {
    margin-top: 34px;
    margin-bottom: 40px;
}

.video-preview-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-preview-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border: none;
    border-radius: 50%;
    background: #ff1b0a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: #eb1708;
}

.video-play-btn img {
    width: 32px;
    height: 32px;
    display: block;
    margin-left: 4px;
}

.strategies-info {
    padding-left: 18px;
}

.strategies-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 18px;
}

.strategies-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.strategies-list li {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    color: #333333;
    margin-bottom: 14px;
}

.strategies-list li:last-child {
    margin-bottom: 0;
}

.strategies-list li::before {
    content: "-";
    margin-right: 0;
    display: inline-block;
}

.strategies-action {
    margin-top: 10px;
}

.strategies-btn {
    width: 100%;
    min-height: 96px;
    border-radius: 28px;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.strategies-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}



@media (max-width: 991px) {
    .strategies-header {
        margin-bottom: 28px;
    }

    .strategies-header h2 {
        font-size: 40px;
    }

    .strategies-header h3 {
        font-size: 36px;
    }

    .strategies-header p {
        font-size: 30px;
    }

    .video-preview-box {
        margin-bottom: 28px;
    }

    .strategies-info {
        padding-left: 0;
        padding-top: 0;
    }



    .strategies-list li {
        font-size: 18px;
    }

    .strategies-btn {
        min-height: 78px;
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .strategies-section {
        padding: 100px 0 40px;
    }

    .strategies-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .strategies-header h2 {
        font-size: 31px;
        margin-bottom: 18px;
    }

    .strategies-header h3 {
        font-size: 27px;
        margin-bottom: 16px;
    }

    .strategies-header p {
        font-size: 22px;
    }

    .strategies-content-row {
        margin-top: 24px;
        margin-bottom: 28px;
    }

    .video-play-btn {
        width: 72px;
        height: 72px;
    }

    .video-play-btn img {
        width: 26px;
        height: 26px;
    }



    .strategies-list li {
        font-size: 16px;
    }

    .strategies-btn {
        min-height: 66px;
        font-size: 20px;
        border-radius: 22px;
    }
}

.brands-section {
    background: #ffffff;
    padding: 80px 0 160px;
}

.brands-container {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}

.brands-header {
    margin-bottom: 34px;
}

.brands-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.brands-image-wrap {
    width: 100%;
    background: rgba(120, 86, 89, 0.14);
    padding: 0;
}

.brands-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}



@media (max-width: 991px) {
    .brands-header {
        margin-bottom: 26px;
    }


}

@media (max-width: 767px) {
    .brands-section {
        padding: 40px 0 80px;
    }

    .brands-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brands-header {
        margin-bottom: 20px;
    }

    .brands-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .brands-header h2 {
        font-size: 31px;
    }
}

.webinar-info-section {
    background: #0D1B2A;
    padding: 72px 0 68px;
}

.webinar-info-container {
    padding-left: 34px;
    padding-right: 34px;
    max-width: 1600px;
}

.webinar-info-row {
    align-items: stretch;
}

.webinar-image-box {
    width: 100%;
    overflow: hidden;
}

.webinar-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.webinar-bottom-text {
    padding-top: 56px;
    padding-right: 34px;
}

.webinar-bottom-text h2 {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 26px;
}

.webinar-bottom-text p {
    font-size: 27px;
    line-height: 1.28;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.webinar-right-content {
    padding-left: 24px;
}

.webinar-right-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.webinar-right-content p {
    font-size: 22px;
    line-height: 1.22;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
}

.webinar-right-content p:last-child {
    margin-bottom: 0;
}

.webinar-highlight {
    font-weight: 700 !important;
    color: #ffffff !important;
}


@media (max-width: 1399px) {

    .webinar-right-content p {
        font-size: 22px;
    }

    .webinar-bottom-text h2 {
        font-size: 38px;
    }

    .webinar-bottom-text p {
        font-size: 23px;
    }
}

@media (max-width: 1199px) {
    .webinar-info-section {
        padding: 60px 0 58px;
    }

    .webinar-info-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .webinar-right-content h2 {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .webinar-right-content p {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .webinar-bottom-text {
        padding-top: 40px;
        padding-right: 22px;
    }

    .webinar-bottom-text h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .webinar-bottom-text p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .webinar-right-content {
        padding-left: 0;
        padding-top: 34px;
    }

    .webinar-bottom-text {
        padding-top: 30px;
        padding-right: 0;
    }


    .webinar-right-content p {
        font-size: 22px;
        line-height: 1.34;
    }

    .webinar-bottom-text h2 {
        font-size: 30px;
    }

    .webinar-bottom-text p {
        font-size: 18px;
        line-height: 1.36;
    }
}

@media (max-width: 767px) {
    .webinar-info-section {
        padding: 42px 0 44px;
    }

    .webinar-info-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .webinar-right-content {
        padding-top: 28px;
    }

    .webinar-right-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .webinar-right-content p {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .webinar-bottom-text {
        padding-top: 24px;
    }

    .webinar-bottom-text h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .webinar-bottom-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .webinar-right-content h2 {
        font-size: 24px;
    }

    .webinar-bottom-text h2 {
        font-size: 22px;
    }
}

.search-profit-section {
    background: #0D1B2A;
    padding: 78px 0 25px;
}

.search-profit-container {
    max-width: 1600px;
    padding-left: 36px;
    padding-right: 36px;
}

.search-profit-content {
    max-width: 1180px;
}

.search-profit-content h2 {
    font-size: 30px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px;
}

.search-profit-line {
    width: 255px;
    height: 2px;
    background: #1E7F5C;
    margin-bottom: 26px;
}

.search-profit-content p {
    font-size: 22px;
    line-height: 1.22;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}




@media (max-width: 1199px) {
    .search-profit-section {
        padding: 64px 0 25px;
    }

    .search-profit-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .search-profit-content h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .search-profit-line {
        width: 220px;
        margin-bottom: 22px;
    }

    .search-profit-content p {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .search-profit-content h2 {
        font-size: 30px;
    }

    .search-profit-line {
        width: 180px;
        height: 2px;
        margin-bottom: 18px;
    }

    .search-profit-content p {
        font-size: 22px;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .search-profit-section {
        padding: 46px 0 25px;
    }

    .search-profit-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .search-profit-content h2 {
        font-size: 30px;
        line-height: 1.16;
        margin-bottom: 14px;
    }

    .search-profit-line {
        width: 140px;
        margin-bottom: 16px;
    }

    .search-profit-content p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .search-profit-content h2 {
        font-size: 25px;
    }

    .search-profit-content p {
        font-size: 18px;
    }
}

.minimal-effort-section {
    background: #0D1B2A;
    padding: 25px 0 84px;
}

.minimal-effort-container {
    max-width: 1600px;
    padding-left: 36px;
    padding-right: 36px;
}

.minimal-effort-content {
    max-width: 870px;
    margin-left: auto;
}

.minimal-effort-content h2 {
    font-size: 30px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px;
}

.minimal-effort-line {
    width: 255px;
    height: 4px;
    background: #1E7F5C;
    margin-bottom: 24px;
}

.minimal-effort-content p {
    font-size: 22px;
    line-height: 1.24;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}



@media (max-width: 1199px) {
    .minimal-effort-section {
        padding: 25px 0 68px;
    }

    .minimal-effort-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .minimal-effort-content h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .minimal-effort-line {
        width: 220px;
        margin-bottom: 20px;
    }

    .minimal-effort-content p {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .minimal-effort-content {
        max-width: 100%;
    }

    .minimal-effort-content h2 {
        font-size: 30px;
    }

    .minimal-effort-line {
        width: 180px;
        height: 3px;
        margin-bottom: 18px;
    }

    .minimal-effort-content p {
        font-size: 22px;
        line-height: 1.32;
    }
}

@media (max-width: 767px) {
    .minimal-effort-section {
        padding: 25px 0 50px;
    }

    .minimal-effort-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .minimal-effort-content h2 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .minimal-effort-line {
        width: 145px;
        margin-bottom: 16px;
    }

    .minimal-effort-content p {
        font-size: 22px;
        line-height: 1.38;
    }
}

@media (max-width: 480px) {
    .minimal-effort-content h2 {
        font-size: 26px;
    }

    .minimal-effort-content p {
        font-size: 18px;
    }
}

.training-steps-section {
    background: #0D1B2A;
    padding: 72px 0 88px;
}

.training-steps-header {
    margin-bottom: 54px;
}

.training-steps-header h2 {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.training-steps-grid {
    justify-content: center;
    margin-bottom: 34px;
}

.training-step-card {
    min-height: 190px;
    border-radius: 20px;
    box-shadow: 0px 5px 4px #1E7F5C;
    padding: 30px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.training-step-card-large {
    min-height: 250px;
}

.training-step-card p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.training-steps-action {
    margin-top: 8px;
}

.training-steps-btn {
    width: 100%;
    min-height: 118px;
    background: #1E7F5C;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.training-steps-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 1399px) {
    .training-steps-header h2 {
        font-size: 44px;
    }

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

    .training-steps-btn {
        font-size: 40px;
        min-height: 100px;
    }
}

@media (max-width: 1199px) {
    .training-steps-section {
        padding: 62px 0 74px;
    }

    .training-steps-header {
        margin-bottom: 42px;
    }

    .training-steps-header h2 {
        font-size: 44px;
    }

    .training-step-card {
        min-height: 170px;
        padding: 24px;
    }

    .training-step-card-large {
        min-height: 220px;
    }

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

    .training-steps-btn {
        min-height: 90px;
        font-size: 40px;
        border-radius: 28px;
    }
}

@media (max-width: 991px) {
    .training-steps-header h2 {
        font-size: 44px;
    }

    .training-step-card {
        min-height: 160px;
    }

    .training-step-card-large {
        min-height: 200px;
    }

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

    .training-steps-btn {
        min-height: 82px;
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .training-steps-section {
        padding: 46px 0 54px;
    }

    .training-steps-header {
        margin-bottom: 28px;
    }

    .training-steps-header h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .training-step-card,
    .training-step-card-large {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 16px;
    }

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

    .training-steps-grid {
        margin-bottom: 24px;
    }

    .training-steps-btn {
        min-height: 66px;
        font-size: 22px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .training-steps-header h2 {
        font-size: 28px;
    }

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

.financial-breakthrough-section {
    background: #ffffff;
    padding: 160px 0 100px;
}

.financial-breakthrough-header {
    max-width: 1180px;
    margin: 0 auto 42px;
}

.financial-breakthrough-header h2 {
    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;
    color: #333333;
    margin: 0 0 28px;
}

.financial-breakthrough-header p {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 300;
    color: #333333;
}

.financial-breakthrough-grid {
    margin-bottom: 34px;
}

.breakthrough-item {
    min-height: 170px;
    position: relative;
}

.breakthrough-item-left {
    text-align: left;
}

.breakthrough-item-right {
    text-align: right;
}

.breakthrough-item-bottom {
    margin-top: 8px;
}

.breakthrough-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1E7F5C;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.breakthrough-item-left .breakthrough-number {
    margin-right: auto;
}

.breakthrough-item-right .breakthrough-number {
    margin-left: auto;
}

.breakthrough-text h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    margin: 0 0 6px;
}

.breakthrough-text p {
    font-size: 22px;
    line-height: 1.22;
    font-weight: 300;
    color: #333333;
    margin: 0;
}

.financial-breakthrough-action {
    max-width: 760px;
    margin: 0 auto;
}

.financial-breakthrough-btn {
    width: 100%;
    min-height: 96px;
    border-radius: 28px;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.financial-breakthrough-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 1399px) {
    .financial-breakthrough-header h2 {
        font-size: 44px;
    }

    .financial-breakthrough-header p {
        font-size: 30px;
    }

    .breakthrough-text h3 {
        font-size: 22px;
    }

    .breakthrough-text p {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .financial-breakthrough-section {
        padding: 160px 0 100px;
    }

    .financial-breakthrough-header h2 {
        font-size: 44px;
        margin-bottom: 22px;
    }

    .financial-breakthrough-header p {
        font-size: 30px;
    }

    .breakthrough-text h3 {
        font-size: 22px;
    }

    .breakthrough-text p {
        font-size: 20px;
    }

    .financial-breakthrough-btn {
        min-height: 88px;
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .financial-breakthrough-header {
        margin-bottom: 32px;
    }

    .financial-breakthrough-header h2 {
        font-size: 44px;
    }

    .financial-breakthrough-header p {
        font-size: 30px;
    }

    .breakthrough-item {
        min-height: 150px;
    }


    .breakthrough-number {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .breakthrough-text h3 {
        font-size: 20px;
    }

    .breakthrough-text p {
        font-size: 18px;
    }

    .financial-breakthrough-btn {
        min-height: 78px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .financial-breakthrough-section {
        padding: 80px 0 50px;
    }

    .financial-breakthrough-header h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .financial-breakthrough-header p {
        font-size: 24px;
    }

    .breakthrough-item,
    .breakthrough-item-bottom {
        min-height: auto;
        margin-top: 0;
    }

    .breakthrough-item-left,
    .breakthrough-item-right {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .breakthrough-item-left .breakthrough-number,
    .breakthrough-item-right .breakthrough-number {
        margin-left: auto;
        margin-right: auto;
    }

    .breakthrough-number {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .breakthrough-text h3 {
        font-size: 18px;
    }

    .breakthrough-text p {
        font-size: 16px;
    }

    .financial-breakthrough-grid {
        margin-bottom: 24px;
    }

    .financial-breakthrough-btn {
        min-height: 66px;
        border-radius: 22px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .financial-breakthrough-header h2 {
        font-size: 26px;
    }

    .financial-breakthrough-header p {
        font-size: 18px;
    }
}

.training-expect-section {
    background: #ffffff;
    padding: 100px 0 160px;
}

.training-expect-header {
    margin-bottom: 50px;
}

.training-expect-header h2 {
    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.training-expect-content {
    max-width: 1120px;
    margin: 0 auto;
}

.training-expect-item {
    margin-bottom: 30px;
}

.training-expect-item:last-child {
    margin-bottom: 0;
}

.training-expect-item h3 {
    font-size: 30px;
    line-height: 1.18;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px;
}

.training-expect-line {
    width: 185px;
    height: 2px;
    background: #1E7F5C;
    margin-bottom: 12px;
}

.training-expect-item p {
    font-size: 22px;
    line-height: 1.28;
    font-weight: 300;
    color: #333333;
    margin: 0;
}


@media (max-width: 1399px) {
    .training-expect-header h2 {
        font-size: 44px;
    }

    .training-expect-item p {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .training-expect-section {
        padding: 100px 0 160px;
    }

    .training-expect-header {
        margin-bottom: 50px;
    }

    .training-expect-header h2 {
        font-size: 44px;
    }

    .training-expect-item {
        margin-bottom: 30px;
    }

    .training-expect-item h3 {
        font-size: 30px;
    }

    .training-expect-line {
        width: 160px;
    }

    .training-expect-item p {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .training-expect-header h2 {
        font-size: 44px;
    }

    .training-expect-item h3 {
        font-size: 30px;
    }

    .training-expect-line {
        width: 140px;
        height: 2px;
    }

    .training-expect-item p {
        font-size: 22px;
        line-height: 1.34;
    }
}

@media (max-width: 767px) {
    .training-expect-section {
        padding: 100px 0 80px;
    }

    .training-expect-header {
        margin-bottom: 40px;
    }

    .training-expect-header h2 {
        font-size: 32px;
        line-height: 1.16;
    }

    .training-expect-item {
        margin-bottom: 30px;
    }

    .training-expect-item h3 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .training-expect-line {
        width: 120px;
        margin-bottom: 10px;
    }

    .training-expect-item p {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .training-expect-header h2 {
        font-size: 28px;
    }

    .training-expect-item h3 {
        font-size: 22px;
    }

    .training-expect-item p {
        font-size: 16px;
    }
}

.bonus-report-section {
    background: #0D1B2A;
    padding: 70px 0 82px;
}

.bonus-report-header {
    margin-bottom: 44px;
}

.bonus-report-header h2 {
    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px;
}

.bonus-report-subtitle {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 18px;
}

.bonus-report-description {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.bonus-report-content {
    margin-bottom: 26px;
}

.bonus-report-text {
    max-width: 520px;
}

.bonus-report-item {
    margin-bottom: 18px;
}

.bonus-report-item:last-child {
    margin-bottom: 0;
}

.bonus-report-item p {
    font-size: 22px;
    line-height: 1.22;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.bonus-report-line {
    width: 210px;
    height: 2px;
    background: #1E7F5C;
    margin-top: 16px;
}

.bonus-report-book-wrap {
    text-align: center;
}

.bonus-report-book {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.bonus-report-action {
    margin-top: 4px;
}

.bonus-report-btn {
    width: 100%;
    min-height: 92px;
    border-radius: 26px;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bonus-report-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 1399px) {
    .bonus-report-header h2 {
        font-size: 44px;
    }

    .bonus-report-description {
        font-size: 26px;
    }
}

@media (max-width: 1199px) {
    .bonus-report-section {
        padding: 60px 0 70px;
    }

    .bonus-report-header h2 {
        font-size: 44px;
    }

    .bonus-report-subtitle {
        font-size: 30px;
    }

    .bonus-report-description {
        font-size: 30px;
    }

    .bonus-report-item p {
        font-size: 20px;
    }

    .bonus-report-book {
        max-width: 390px;
    }

    .bonus-report-btn {
        min-height: 84px;
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .bonus-report-header {
        margin-bottom: 34px;
    }

    .bonus-report-header h2 {
        font-size: 44px;
    }

    .bonus-report-subtitle {
        font-size: 26px;
    }

    .bonus-report-description {
        font-size: 26px;
    }

    .bonus-report-text {
        max-width: 100%;
        margin-bottom: 26px;
    }

    .bonus-report-item p {
        font-size: 18px;
        line-height: 1.34;
    }

    .bonus-report-book {
        max-width: 340px;
    }

    .bonus-report-btn {
        min-height: 76px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .bonus-report-section {
        padding: 44px 0 52px;
    }

    .bonus-report-header h2 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .bonus-report-subtitle {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .bonus-report-description {
        font-size: 22px;
    }

    .bonus-report-item {
        margin-bottom: 16px;
    }

    .bonus-report-item p {
        font-size: 16px;
    }

    .bonus-report-line {
        width: 150px;
        margin-top: 12px;
    }

    .bonus-report-book {
        max-width: 280px;
    }

    .bonus-report-btn {
        min-height: 64px;
        border-radius: 22px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .bonus-report-header h2 {
        font-size: 26px;
    }

    .bonus-report-description {
        font-size: 16px;
    }
}

.hosts-section {
    background: #ffffff;
    padding: 160px 0 80px;
}

.hosts-header {
    margin-bottom: 40px;
}

.hosts-header h2 {
    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.hosts-image-wrap {
    margin-bottom: 40px;
}

.hosts-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.hosts-content {
    max-width: 1080px;
    margin: 0 auto;
}

.hosts-content p {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 300;
    color: #333333;
    margin: 0 0 22px;
}

.hosts-categories {
    margin-top: 8px;
}

.hosts-categories p {
    font-size: 30px;
    line-height: 1.18;
    font-weight: 700;
    color: #333333;
    margin: 0 0 6px;
}

.hosts-categories p:last-child {
    margin-bottom: 0;
}


@media (max-width: 1399px) {
    .hosts-header h2 {
        font-size: 44px;
    }

    .hosts-content p,
    .hosts-categories p {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .hosts-section {
        padding: 160px 0 80px;
    }

    .hosts-header h2 {
        font-size: 44px;
    }

    .hosts-image {
        max-width: 360px;
    }

    .hosts-content p,
    .hosts-categories p {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .hosts-header {
        margin-bottom: 40px;
    }

    .hosts-header h2 {
        font-size: 40px;
    }

    .hosts-image-wrap {
        margin-bottom: 40px;
    }

    .hosts-image {
        max-width: 320px;
    }

    .hosts-content p {
        font-size: 26px;
        line-height: 1.34;
        margin-bottom: 18px;
    }

    .hosts-categories p {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .hosts-section {
        padding: 80px 0 40px;
    }

    .hosts-header h2 {
        font-size: 31px;
        line-height: 1.16;
    }

    .hosts-image {
        max-width: 260px;
    }

    .hosts-content p {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .hosts-categories p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hosts-header h2 {
        font-size: 26px;
    }

    .hosts-content p,
    .hosts-categories p {
        font-size: 18px;
    }
}

.media-proof-section {
    background: #ffffff;
    padding: 0px 0 80px;
}

.media-proof-top-images {
    margin-bottom: 60px;
}

.media-proof-image-card {
    text-align: center;
}

.media-proof-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.media-proof-text {
    max-width: 1040px;
    margin: 0 auto 34px;
}

.media-proof-text p {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 300;
    color: #333333;
    margin: 0;
}

.media-proof-bottom-image {
    max-width: 760px;
    margin: 0 auto;
}

.media-proof-large-image {
    width: 100%;
    height: auto;
    display: inline-block;
}


@media (max-width: 1399px) {
    .media-proof-text p {
        font-size: 30px;
    }

    .media-proof-bottom-image {
        max-width: 680px;
    }
}

@media (max-width: 1199px) {
    .media-proof-section {
        padding: 0px 0 68px;
    }

    .media-proof-top-images {
        margin-bottom: 60px;
    }

    .media-proof-text {
        margin-bottom: 28px;
    }

    .media-proof-text p {
        font-size: 30px;
    }

    .media-proof-bottom-image {
        max-width: 620px;
    }
}

@media (max-width: 991px) {
    .media-proof-text p {
        font-size: 30px;
        line-height: 1.34;
    }

    .media-proof-bottom-image {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .media-proof-section {
        padding: 0px 0 52px;
    }

    .media-proof-top-images {
        margin-bottom: 40px;
    }

    .media-proof-text {
        margin-bottom: 24px;
    }

    .media-proof-text p {
        font-size: 26px;
    }

    .media-proof-bottom-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .media-proof-text p {
        font-size: 18px;
    }
}

.events-speaking-section {
    background: #ffffff;
    padding: 0px 0 84px;
}

.events-speaking-header {
    max-width: 1120px;
    margin: 0 auto 34px;
}

.events-speaking-header h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.events-speaking-images {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 34px;
}

.events-speaking-image-wrap {
    width: 100%;
}

.events-speaking-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: inline-block;
}

.events-speaking-action {
    margin-top: 4px;
}

.events-speaking-btn {
    width: 100%;
    min-height: 96px;
    border-radius: 28px;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.events-speaking-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 1399px) {
    .events-speaking-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .events-speaking-section {
        padding: 0px 0 72px;
    }

    .events-speaking-header {
        margin-bottom: 28px;
    }

    .events-speaking-header h2 {
        font-size: 30px;
    }

    .events-speaking-images {
        gap: 28px;
        margin-bottom: 28px;
    }

    .events-speaking-btn {
        min-height: 88px;
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .events-speaking-header h2 {
        font-size: 30px;
        line-height: 1.28;
    }

    .events-speaking-btn {
        min-height: 78px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .events-speaking-section {
        padding: 0px 0 54px;
    }

    .events-speaking-header {
        margin-bottom: 22px;
    }

    .events-speaking-header h2 {
        font-size: 24px;
        line-height: 1.34;
    }

    .events-speaking-images {
        gap: 22px;
        margin-bottom: 24px;
    }

    .events-speaking-btn {
        min-height: 66px;
        border-radius: 22px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .events-speaking-header h2 {
        font-size: 22px;
    }
}

.free-training-section {
    background: #ffffff;
    padding: 74px 0 86px;
}

.free-training-header {
    max-width: 1080px;
    margin: 0 auto 42px;
}

.free-training-header h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #333333;
    margin: 0 0 22px;
}

.free-training-header p {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 300;
    color: #333333;
    margin: 0 0 22px;
}

.free-training-header h3 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 300;
    color: #333333;
    margin: 0;
}

.free-training-grid {
    row-gap: 50px;
}

.free-training-item {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.free-training-number {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #1E7F5C;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.free-training-item h4 {
    font-size: 22px;
    line-height: 1.22;
    font-weight: 700;
    color: #333333;
    margin: 0;
}


@media (max-width: 1399px) {
    .free-training-header h2 {
        font-size: 44px;
    }

    .free-training-header p {
        font-size: 30px;
    }

    .free-training-header h3 {
        font-size: 30px;
    }

    .free-training-item h4 {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .free-training-section {
        padding: 62px 0 72px;
    }

    .free-training-header {
        margin-bottom: 34px;
    }

    .free-training-header h2 {
        font-size: 44px;
    }

    .free-training-header p {
        font-size: 30px;
    }

    .free-training-header h3 {
        font-size: 26px;
    }

    .free-training-grid {
        row-gap: 36px;
    }

    .free-training-item {
        min-height: 160px;
    }
}

@media (max-width: 991px) {
    .free-training-header h2 {
        font-size: 42px;
    }

    .free-training-header p {
        font-size: 26px;
        line-height: 1.36;
    }

    .free-training-header h3 {
        font-size: 26px;
    }

    .free-training-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .free-training-item h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .free-training-section {
        padding: 46px 0 54px;
    }

    .free-training-header {
        margin-bottom: 28px;
    }

    .free-training-header h2 {
        font-size: 31px;
        margin-bottom: 16px;
    }

    .free-training-header p {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .free-training-header h3 {
        font-size: 20px;
    }

    .free-training-grid {
        row-gap: 24px;
    }

    .free-training-item {
        min-height: auto;
    }

    .free-training-number {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .free-training-item h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .free-training-header h2 {
        font-size: 26px;
    }

    .free-training-header p {
        font-size: 20px;
    }

    .free-training-header h3 {
        font-size: 20px;
    }

    .free-training-item h4 {
        font-size: 18px;
    }
}

.training-summary-section {
    background: #ffffff;
    padding: 74px 0 82px;
}

.training-summary-header {
    margin-bottom: 40px;
}

.training-summary-header h2 {
    font-size: 44px;
    line-height: 1.14;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.training-summary-list {
    max-width: 1120px;
    margin: 0 auto 34px;
}

.training-summary-item {
    margin-bottom: 20px;
}

.training-summary-item:last-child {
    margin-bottom: 0;
}

.training-summary-item p {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 300;
    color: #333333;
    margin: 0;
}

.training-summary-line {
    width: 190px;
    height: 2px;
    background: #1E7F5C;
    margin: 20px auto 0;
}

.training-summary-action {
    margin-top: 6px;
}

.training-summary-btn {
    width: 100%;
    min-height: 96px;
    border-radius: 28px;
    background: #1E7F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    transition: background 0.3s ease, transform 0.3s ease;
}

.training-summary-btn:hover {
    background: #1c7655;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 1399px) {
    .training-summary-header h2 {
        font-size: 44px;
    }

    .training-summary-item p {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .training-summary-section {
        padding: 62px 0 70px;
    }

    .training-summary-header {
        margin-bottom: 40px;
    }

    .training-summary-header h2 {
        font-size: 44px;
    }

    .training-summary-list {
        margin-bottom: 28px;
    }

    .training-summary-item p {
        font-size: 30px;
    }

    .training-summary-btn {
        min-height: 88px;
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .training-summary-header h2 {
        font-size: 44px;
    }

    .training-summary-item p {
        font-size: 26px;
        line-height: 1.36;
    }

    .training-summary-line {
        width: 160px;
        height: 2px;
        margin-top: 20px;
    }

    .training-summary-btn {
        min-height: 78px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .training-summary-section {
        padding: 46px 0 54px;
    }

    .training-summary-header {
        margin-bottom: 40px;
    }

    .training-summary-header h2 {
        font-size: 38px;
        line-height: 1.16;
    }

    .training-summary-list {
        margin-bottom: 24px;
    }

    .training-summary-item {
        margin-bottom: 16px;
    }

    .training-summary-item p {
        font-size: 24px;
    }

    .training-summary-line {
        width: 120px;
        margin-top: 20px;
    }

    .training-summary-btn {
        min-height: 66px;
        border-radius: 22px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .training-summary-header h2 {
        font-size: 32px;
    }

    .training-summary-item p {
        font-size: 22px;
    }
}

.site-footer {
    background: #0D1B2A;
    padding: 24px 0 22px;
}

.site-footer-row {
    min-height: 110px;
}

.site-footer-logo img {

    height: 80px;
    display: block;
}

.site-footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    flex-wrap: wrap;
}

.site-footer-nav a,
.site-footer-nav span {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
}

.site-footer-nav a:hover {
    color: #ffffff;
}

@media (max-width: 1399px) {

    .site-footer-nav a,
    .site-footer-nav span {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .site-footer {
        padding: 22px 0;
    }

    .site-footer-nav {
        gap: 20px;
    }

    .site-footer-nav a,
    .site-footer-nav span {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .site-footer-row {
        row-gap: 20px;
    }

    .site-footer-logo {
        text-align: center;
    }

    .site-footer-logo img {
        margin: 0 auto;
    }

    .site-footer-nav {
        justify-content: center;
        text-align: center;
        gap: 18px 24px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 20px 0;
    }



    .site-footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .site-footer-nav a,
    .site-footer-nav span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .site-footer-nav a,
    .site-footer-nav span {
        font-size: 14px;
    }
}

.lead-modal .modal-dialog {
    max-width: 700px;
}



.lead-modal-content {
    max-width: 570px;
    margin: 0 auto;
    position: relative;
    background: #041c35;
    border: 2px solid rgba(241, 223, 223, 0.9);
    border-radius: 34px;
    padding: 34px 20px 22px;
    overflow: hidden;
}

.lead-modal-body {
    padding: 0;
}

.lead-modal-body h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin: 0 0 12px;
}

.lead-modal-body p {
    max-width: 560px;
    margin: 0 auto 26px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
}

.lead-modal-form {
    width: 100%;
}

.lead-modal-group {
    margin-bottom: 18px;
}

.lead-modal-group input {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    border-radius: 28px;
    background: #f2f2f2;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lead-modal-group input::placeholder {
    color: #6b6262;
    opacity: 1;
}

.lead-modal-phone {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lead-modal-country {
    min-width: 92px;
    height: 55px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px 0 20px;
    color: #333333;
    font-size: 16px;
    font-weight: 300;
}

.lead-modal-flag {
    font-size: 23px;
    line-height: 1;
}

.lead-modal-code {
    font-size: 16px;
    color: #333333;
}

.lead-modal-phone input {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    flex: 1;
}

.lead-modal-submit {
    width: 100%;
    min-height: 95px;
    border: none;
    border-radius: 30px;
    background: #238c61;
    color: #ffffff;
    font-size: 29px;
    line-height: 1;
    font-weight: 800;
    margin-top: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lead-modal-submit:hover {
    background: #1f7b55;
    transform: translateY(-2px);
}

.lead-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}



.lead-modal .modal-backdrop,
.modal-backdrop.show {
    opacity: 0.75;
}

.modal.fade .modal-dialog {
    transform: scale(0.96);
    transition: transform 0.2s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

@media (max-width: 767px) {
    .lead-modal .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }

    .lead-modal-content {
        border-radius: 24px;
        padding: 28px 16px 18px;
    }

    .lead-modal-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .lead-modal-close span {
        width: 17px;
    }

    .lead-modal-close::after {
        width: 18px;
        bottom: -5px;
    }

    .lead-modal-body h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .lead-modal-body p {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .lead-modal-group {
        margin-bottom: 14px;
    }

    .lead-modal-group input,
    .lead-modal-phone,
    .lead-modal-country {
        height: 50px;
    }

    .lead-modal-group input {
        border-radius: 25px;
        padding: 0 16px;
        font-size: 15px;
    }

    .lead-modal-phone {
        border-radius: 25px;
    }

    .lead-modal-country {
        min-width: 82px;
        padding: 0 12px 0 15px;
    }

    .lead-modal-submit {
        min-height: 72px;
        border-radius: 22px;
        font-size: 21px;
    }
}

.modal {
    background: #00000080;
}

.impressum-content-section {
    background: #ffffff;
    padding: 200px 0 80px;
}

.impressum-content-wrap {
    max-width: 1280px;
}

.impressum-block {
    margin-bottom: 54px;
}

.impressum-block:last-child {
    margin-bottom: 0;
}

.impressum-block h1,
.impressum-block h2 {
    font-weight: 700;
    color: #333333;
    margin: 0 0 26px;
    letter-spacing: 0;
}

.impressum-block h1 {
    font-size: 48px;
    line-height: 1.08;
}

.impressum-block h2 {
    font-size: 48px;
    line-height: 1.12;
}

.impressum-block p {
    font-size: 28px;
    line-height: 1.32;
    font-weight: 400;
    color: #3f4045;
    margin: 0 0 28px;
}

.impressum-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .impressum-block h1 {
        font-size: 48px;
    }

    .impressum-block h2 {
        font-size: 48px;
    }

    .impressum-block p {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .impressum-content-section {
        padding: 150px 0 64px;
    }

    .impressum-block {
        margin-bottom: 46px;
    }

    .impressum-block h1 {
        font-size: 48px;
    }

    .impressum-block h2 {
        font-size: 48px;
    }

    .impressum-block p {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .impressum-block {
        margin-bottom: 40px;
    }

    .impressum-block h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .impressum-block h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .impressum-block p {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .impressum-content-section {
        padding: 150px 0 44px;
    }

    .impressum-block {
        margin-bottom: 32px;
    }

    .impressum-block h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .impressum-block h2 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .impressum-block p {
        font-size: 22px;
        line-height: 1.45;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .impressum-block h1 {
        font-size: 36px;
    }

    .impressum-block h2 {
        font-size: 36px;
    }

    .impressum-block p {
        font-size: 18px;
    }
}

.blog-list-section {
    background: #ffffff;
    padding: 200px 0 80px;
}

.blog-list-wrap { 
    padding-left: 32px;
    padding-right: 32px;
}

.blog-list-header {
    margin-bottom: 42px;
}

.blog-list-header h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.blog-list-item {
    padding: 0 0 40px;
    margin-bottom: 42px;
    border-bottom: 2px solid #1E7F5C;
}

.blog-list-item:last-child {
    margin-bottom: 0;
}

.blog-list-item h2 {
    max-width: 980px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    color: #3b3c40;
    margin: 0 0 18px;
}

.blog-list-item p {
    max-width: 610px;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 400;
    color: #47484d;
    margin: 0 0 28px;
}

.blog-list-link {
    display: inline-block;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #1E7F5C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-link:hover {
    color: #236c51;
}

@media (max-width: 1399px) {
    .blog-list-header h1 {
        font-size: 48px;
    }

    .blog-list-item h2 {
        font-size: 28px;
    }

    .blog-list-item p {
        font-size: 22px;
    }

    .blog-list-link {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .blog-list-section {
        padding: 150px 0 64px;
    }

    .blog-list-wrap {
        padding-left: 28px;
        padding-right: 28px;
    }

    .blog-list-header {
        margin-bottom: 34px;
    }

    .blog-list-header h1 {
        font-size: 48px;
    }

    .blog-list-item {
        padding-bottom: 32px;
        margin-bottom: 34px;
    }

    .blog-list-item h2 {
        font-size: 28px;
    }

    .blog-list-item p {
        font-size: 20px;
        max-width: 560px;
    }
}

@media (max-width: 991px) {
    .blog-list-header h1 {
        font-size: 48px;
    }

    .blog-list-item h2 {
        font-size: 28px;
    }

    .blog-list-item p {
        font-size: 18px;
        line-height: 1.36;
        max-width: 100%;
    }

    .blog-list-link {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-list-section {
        padding: 150px 0 46px;
    }

    .blog-list-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-list-header {
        margin-bottom: 24px;
    }

    .blog-list-header h1 {
        font-size: 40px;
    }

    .blog-list-item {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom-width: 2px;
    }

    .blog-list-item h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .blog-list-item p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .blog-list-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-list-header h1 {
        font-size: 36px;
    }

    .blog-list-item h2 {
        font-size: 20px;
    }

    .blog-list-item p {
        font-size: 15px;
    }
}

.datenschutz-content-section {
    background: #ffffff;
    padding: 200px 0 80px;
}

.datenschutz-content-wrap {
    max-width: 1280px;
}

.datenschutz-block {
    margin-bottom: 34px;
}

.datenschutz-block:last-child {
    margin-bottom: 0;
}

.datenschutz-block h1,
.datenschutz-block h2 {
    font-weight: 700;
    color: #333333;
    margin: 0 0 14px;
    letter-spacing: 0;
}

.datenschutz-block h1 {
    font-size: 48px;
    line-height: 1.1;
}

.datenschutz-block h2 {
    font-size: 28px;
    line-height: 1.25;
}

.datenschutz-block p {
    font-size: 28px;
    line-height: 1.34;
    font-weight: 400;
    color: #4a4b50;
    margin: 0 0 16px;
}

.datenschutz-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .datenschutz-content-section {
        padding: 200px 0 80px;
    }

    .datenschutz-block {
        margin-bottom: 28px;
    }

    .datenschutz-block h1 {
        font-size: 30px;
    }

    .datenschutz-block h2 {
        font-size: 28px;
    }

    .datenschutz-block p {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .datenschutz-content-section {
        padding: 150px 0 80px;
    }

    .datenschutz-block h1 {
        font-size: 26px;
    }

    .datenschutz-block h2 {
        font-size: 22px;
    }

    .datenschutz-block p {
        font-size: 22px;
    }
}

.haftung-content-section {
    background: #ffffff;
    padding: 200px 0 80px;
}

.haftung-content-wrap {
    max-width: 1280px;
}

.haftung-block {
    margin-bottom: 42px;
}

.haftung-block:last-child {
    margin-bottom: 0;
}

.haftung-block h1,
.haftung-block h2 {
    font-weight: 700;
    color: #333333;
    margin: 0 0 18px;
    letter-spacing: 0;
}

.haftung-block h1 {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 40px;
}

.haftung-block h2 {
    font-size: 28px;
    line-height: 1.24;
}

.haftung-block p {
    font-size: 28px;
    line-height: 1.34;
    font-weight: 400;
    color: #4a4b50;
    margin: 0;
}

@media (max-width: 1399px) {
    .haftung-block h1 {
        font-size: 48px;
    }

    .haftung-block h2 {
        font-size: 28px;
    }

    .haftung-block p {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .haftung-content-section {
        padding: 200px 0 64px;
    }

    .haftung-block {
        margin-bottom: 34px;
    }

    .haftung-block h1 {
        font-size: 48px;
        margin-bottom: 34px;
    }

    .haftung-block h2 {
        font-size: 28px;
    }

    .haftung-block p {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .haftung-block {
        margin-bottom: 28px;
    }

    .haftung-block h1 {
        font-size: 40px;
        margin-bottom: 28px;
    }

    .haftung-block h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .haftung-block p {
        font-size: 28px;
        line-height: 1.42;
    }
}

@media (max-width: 767px) {
    .haftung-content-section {
        padding: 150px 0 44px;
    }

    .haftung-block h1 {
        font-size: 36px;
        margin-bottom: 22px;
    }

    .haftung-block h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .haftung-block p {
        font-size: 28px;
        line-height: 1.46;
    }
}

@media (max-width: 480px) {
    .haftung-block h1 {
        font-size: 32px;
    }

    .haftung-block h2 {
        font-size: 22px;
    }

    .haftung-block p {
        font-size: 22px;
    }
}

.cookies-content-section {
    background: #ffffff;
    padding: 200px 0 80px;
}

.cookies-content-wrap {
    max-width: 1280px;
}

.cookies-block {
    margin-bottom: 34px;
}

.cookies-block:last-child {
    margin-bottom: 0;
}

.cookies-block h1,
.cookies-block h2 {
    font-weight: 700;
    color: #333333;
    margin: 0 0 16px;
    letter-spacing: 0;
}

.cookies-block h1 {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 40px;
}

.cookies-block h2 {
    font-size: 28px;
    line-height: 1.2;
}

.cookies-block p {
    font-size: 28px;
    line-height: 1.34;
    font-weight: 400;
    color: #4a4b50;
    margin: 0 0 18px;
}

.cookies-block p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1399px) {
    .cookies-block h1 {
        font-size: 48px;
    }

    .cookies-block h2 {
        font-size: 28px;
    }

    .cookies-block p {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .cookies-content-section {
        padding: 200px 0 64px;
    }

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

    .cookies-block h1 {
        font-size: 48px;
        margin-bottom: 32px;
    }

    .cookies-block h2 {
        font-size: 28px;
    }

    .cookies-block p {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .cookies-block h1 {
        font-size: 48px;
        margin-bottom: 26px;
    }

    .cookies-block h2 {
        font-size: 28px;
    }

    .cookies-block p {
        font-size: 28px;
        line-height: 1.42;
    }
}

@media (max-width: 767px) {
    .cookies-content-section {
        padding: 150px 0 44px;
    }

    .cookies-block {
        margin-bottom: 24px;
    }

    .cookies-block h1 {
        font-size: 40px;
        margin-bottom: 22px;
    }

    .cookies-block h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cookies-block p {
        font-size: 28px;
        line-height: 1.46;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .cookies-block h1 {
        font-size: 36px;
    }

    .cookies-block h2 {
         font-size: 22px;
    }

    .cookies-block p {
         font-size: 22px;
    }
}