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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden
}

a {
    text-decoration: none;
}

.h6d2-wrap-widget.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

.h6d2-wrap-widget.main-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #f0f0f0
}

.h6d2-wrap-widget.logo-section h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: -0.5px
}

.h6d2-wrap-widget.main-navigation {
    display: flex;
    gap: 40px
}

.h6d2-wrap-widget.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative
}

.h6d2-wrap-widget.nav-link:hover {
    color: #ff6b35
}

.h6d2-wrap-widget.nav-link.active {
    color: #ff6b35;
}

.h6d2-wrap-widget.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6b35;
}

.h6d2-wrap-widget.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    border-top: 4px solid #ff6b35
}

.h6d2-wrap-widget.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.h6d2-wrap-widget.cookie-content p {
  margin: 0;
  flex: 1; 
}

.h6d2-wrap-widget.cookie-buttons {
    display: flex;
    gap: 15px
}

.h6d2-wrap-widget.btn-accept,
.h6d2-wrap-widget.btn-decline,
.h6d2-wrap-widget.btn-settings {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px
}

.h6d2-wrap-widget.btn-accept {
    background: #ff6b35;
    color: white
}

.h6d2-wrap-widget.btn-accept:hover {
    background: #e55a2b;
    transform: translateY(-2px)
}

.h6d2-wrap-widget.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white
}

.h6d2-wrap-widget.btn-decline:hover {
    background: white;
    color: #2c3e50
}

.h6d2-wrap-widget.btn-settings {
    background: #95a5a6;
    color: white
}

.h6d2-wrap-widget.hero-asymmetric {
    padding: 80px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh
}

.h6d2-wrap-widget.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center
}

.h6d2-wrap-widget.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2c3e50
}

.h6d2-wrap-widget.accent-text {
    color: #ff6b35;
    font-weight: 900
}

.h6d2-wrap-widget.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px
}

.h6d2-wrap-widget.benefit-item {
    font-size: 16px;
    font-weight: 500;
    color: #27ae60;
    display: flex;
    align-items: center
}

.h6d2-wrap-widget.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7
}

.h6d2-wrap-widget.hero-action {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap
}

.h6d2-wrap-widget.cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3)
}

.h6d2-wrap-widget.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4)
}

.h6d2-wrap-widget.promo-badge {
    background: #e8f5e8;
    color: #27ae60;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #27ae60
}

.h6d2-wrap-widget.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15)
}

.h6d2-wrap-widget.statistics-timeline {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.stats-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px
}

.h6d2-wrap-widget.stats-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50
}

.h6d2-wrap-widget.stats-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.8
}

.h6d2-wrap-widget.stats-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 40px 0
}

.h6d2-wrap-widget.stat-cell {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease
}

.h6d2-wrap-widget.stat-cell:hover {
    transform: translateY(-8px)
}

.h6d2-wrap-widget.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 10px;
    display: block
}

.h6d2-wrap-widget.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 600
}

.h6d2-wrap-widget.programs-masonry {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%)
}

.h6d2-wrap-widget.programs-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.masonry-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    grid-auto-rows: min-content
}

.h6d2-wrap-widget.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease
}

.h6d2-wrap-widget.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15)
}

.h6d2-wrap-widget.program-card.tall-card {
    grid-row: span 2
}

.h6d2-wrap-widget.program-card.wide-card {
    grid-column: span 2
}

.h6d2-wrap-widget.program-card.text-only {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white
}

.h6d2-wrap-widget.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.h6d2-wrap-widget.tall-card .card-image {
    height: 300px
}

.h6d2-wrap-widget.card-content {
    padding: 25px
}

.h6d2-wrap-widget.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50
}

.h6d2-wrap-widget.text-only .card-title {
    color: white
}

.h6d2-wrap-widget.card-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6
}

.h6d2-wrap-widget.text-only .card-description {
    color: rgba(255,255,255,0.9)
}

.h6d2-wrap-widget.price-tag {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px
}

.h6d2-wrap-widget.text-only .price-tag {
    color: white
}

.h6d2-wrap-widget.card-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%
}

.h6d2-wrap-widget.text-only .card-button {
    background: white;
    color: #ff6b35
}

.h6d2-wrap-widget.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4)
}

.h6d2-wrap-widget.company-story {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center
}

.h6d2-wrap-widget.story-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50
}

.h6d2-wrap-widget.story-content {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8
}

.h6d2-wrap-widget.story-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12)
}

.h6d2-wrap-widget.expertise-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f3f4 0%, #ffffff 100%)
}

.h6d2-wrap-widget.expertise-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.expertise-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px
}

.h6d2-wrap-widget.expertise-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease
}

.h6d2-wrap-widget.expertise-item:hover {
    transform: translateY(-5px)
}

.h6d2-wrap-widget.expertise-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block
}

.h6d2-wrap-widget.expertise-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px
}

.h6d2-wrap-widget.expertise-desc {
    color: #666;
    line-height: 1.6
}

.h6d2-wrap-widget.process-infographic {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.process-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.infographic-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px
}

.h6d2-wrap-widget.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px
}

.h6d2-wrap-widget.step-number {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3)
}

.h6d2-wrap-widget.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px
}

.h6d2-wrap-widget.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px
}

.h6d2-wrap-widget.testimonials-diagonal {
    padding: 100px 0;
    background: linear-gradient(45deg, #ecf0f1 0%, #ffffff 100%);
    position: relative
}

.h6d2-wrap-widget.testimonials-header {
    text-align: center;
    margin-bottom: 60px
}

.h6d2-wrap-widget.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50
}

.h6d2-wrap-widget.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.h6d2-wrap-widget.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    position: relative;
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.h6d2-wrap-widget.testimonials-layout::-webkit-scrollbar {
    height: 8px;
}

.h6d2-wrap-widget.testimonials-layout::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.h6d2-wrap-widget.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 80px;
    color: #ff6b35;
    font-weight: 900;
    opacity: 0.3
}

.h6d2-wrap-widget.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    font-style: italic
}

.h6d2-wrap-widget.author-name {
    color: #2c3e50;
    font-size: 16px
}

.h6d2-wrap-widget.author-position {
    color: #999;
    font-size: 14px;
    display: block;
    margin-top: 5px
}

.h6d2-wrap-widget.advantages-asymmetric {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.advantages-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.7fr 1.1fr;
    gap: 70px;
    align-items: center
}

.h6d2-wrap-widget.advantages-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12)
}

.h6d2-wrap-widget.advantages-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50
}

.h6d2-wrap-widget.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 35px
}

.h6d2-wrap-widget.advantage-item {
    padding-left: 25px;
    border-left: 4px solid #ff6b35;
    position: relative
}

.h6d2-wrap-widget.advantage-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px
}

.h6d2-wrap-widget.advantage-detail {
    color: #666;
    line-height: 1.6;
    font-size: 16px
}

.h6d2-wrap-widget.team-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%)
}

.h6d2-wrap-widget.team-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px
}

.h6d2-wrap-widget.team-member {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease
}

.h6d2-wrap-widget.team-member:hover {
    transform: translateY(-8px)
}

.h6d2-wrap-widget.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #ff6b35
}

.h6d2-wrap-widget.member-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px
}

.h6d2-wrap-widget.member-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px
}

.h6d2-wrap-widget.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 14px
}

.h6d2-wrap-widget.learning-methodology {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.h6d2-wrap-widget.methodology-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50
}

.h6d2-wrap-widget.methodology-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center
}

.h6d2-wrap-widget.method-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px
}

.h6d2-wrap-widget.method-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.h6d2-wrap-widget.highlight-item {
    background: #ff6b35;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 16px
}

.h6d2-wrap-widget.results-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%)
}

.h6d2-wrap-widget.results-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.results-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px
}

.h6d2-wrap-widget.result-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease
}

.h6d2-wrap-widget.result-item:hover {
    transform: translateY(-5px)
}

.h6d2-wrap-widget.result-image {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.h6d2-wrap-widget.result-content {
    padding: 25px
}

.h6d2-wrap-widget.result-title-small {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px
}

.h6d2-wrap-widget.result-description {
    color: #666;
    line-height: 1.6
}

.h6d2-wrap-widget.faq-unique {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.faq-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px
}

.h6d2-wrap-widget.faq-item {
    margin-bottom: 30px
}

.h6d2-wrap-widget.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px
}

.h6d2-wrap-widget.faq-answer {
    color: #666;
    line-height: 1.7;
    font-size: 16px
}

.h6d2-wrap-widget.application-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%)
}

.h6d2-wrap-widget.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center
}

.h6d2-wrap-widget.form-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px
}

.h6d2-wrap-widget.form-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
    line-height: 1.7
}

.h6d2-wrap-widget.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2)
}

.h6d2-wrap-widget.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px
}

.h6d2-wrap-widget.form-input,
.h6d2-wrap-widget.form-select,
.h6d2-wrap-widget.form-textarea {
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white
}

.h6d2-wrap-widget.form-input:focus,
.h6d2-wrap-widget.form-select:focus,
.h6d2-wrap-widget.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1)
}

.h6d2-wrap-widget.form-textarea {
    resize: vertical;
    width: 100%
}

.h6d2-wrap-widget.form-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3)
}

.h6d2-wrap-widget.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4)
}

.h6d2-wrap-widget.industry-focus {
    padding: 100px 0;
    background: white
}

.h6d2-wrap-widget.industry-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2c3e50
}

.h6d2-wrap-widget.industry-table {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px
}

.h6d2-wrap-widget.industries-list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px
}

.h6d2-wrap-widget.industry-cell {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease
}

.h6d2-wrap-widget.industry-cell:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white
}

.h6d2-wrap-widget.guarantee-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #ecf0f1 0%, #f8f9fa 100%)
}

.h6d2-wrap-widget.guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center
}

.h6d2-wrap-widget.guarantee-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.2)
}

.h6d2-wrap-widget.guarantee-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px
}

.h6d2-wrap-widget.guarantee-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95
}

.h6d2-wrap-widget.guarantee-main-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50
}

.h6d2-wrap-widget.guarantee-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px
}

.h6d2-wrap-widget.guarantee-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1)
}

.h6d2-wrap-widget.contact-hero-diagonal {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh
}

.h6d2-wrap-widget.diagonal-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center
}

.h6d2-wrap-widget.contact-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50
}

.h6d2-wrap-widget.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7
}

.h6d2-wrap-widget.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 35px
}

.h6d2-wrap-widget.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08)
}

.h6d2-wrap-widget.method-icon {
    font-size: 32px;
    flex-shrink: 0
}

.h6d2-wrap-widget.method-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px
}

.h6d2-wrap-widget.method-value {
    font-size: 16px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 5px
}

.h6d2-wrap-widget.method-note {
    font-size: 14px;
    color: #999
}

.h6d2-wrap-widget.contact-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15)
}

.h6d2-wrap-widget.consultation-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%)
}

.h6d2-wrap-widget.form-wrapper-unique {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px
}

.h6d2-wrap-widget.form-header {
    text-align: center;
    margin-bottom: 60px
}

.h6d2-wrap-widget.form-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50
}

.h6d2-wrap-widget.form-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7
}

.h6d2-wrap-widget.detailed-contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1)
}

.h6d2-wrap-widget.form-section {
    margin-bottom: 40px
}

.h6d2-wrap-widget.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
    display: inline-block
}

.h6d2-wrap-widget.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px
}

.h6d2-wrap-widget.form-row-single {
    margin-bottom: 20px
}

.h6d2-wrap-widget.form-submit-section {
    text-align: center;
    margin-top: 40px
}

.h6d2-wrap-widget.form-submit-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
    margin-bottom: 15px
}

.h6d2-wrap-widget.form-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4)
}

.h6d2-wrap-widget.form-note {
    font-size: 14px;
    color: #999;
    font-style: italic
}

.h6d2-wrap-widget.contact-additional-info {
    padding: 80px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ecf0f1 100%)
}

.h6d2-wrap-widget.info-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.h6d2-wrap-widget.info-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center
}

.h6d2-wrap-widget.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px
}

.h6d2-wrap-widget.info-text {
    color: #666;
    line-height: 1.7
}

.h6d2-wrap-widget.about-hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh
}

.h6d2-wrap-widget.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start
}

.h6d2-wrap-widget.about-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50
}

.h6d2-wrap-widget.about-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500
}

.h6d2-wrap-widget.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.h6d2-wrap-widget.philosophy-point {
    padding: 25px;
    background: white;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05)
}

.h6d2-wrap-widget.point-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px
}

.h6d2-wrap-widget.point-description {
    color: #666;
    line-height: 1.6
}

.h6d2-wrap-widget.about-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    margin-bottom: 30px
}

.h6d2-wrap-widget.program-highlights {
    display: grid;
    gap: 20px
}

.h6d2-wrap-widget.highlight-box {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center
}

.h6d2-wrap-widget.highlight-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.h6d2-wrap-widget.highlight-detail {
    font-size: 14px;
    opacity: 0.9
}

.h6d2-wrap-widget.program-details-table {
    padding: 80px 0;
    background: white
}

.h6d2-wrap-widget.details-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50
}

.h6d2-wrap-widget.program-breakdown {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08)
}

.h6d2-wrap-widget.table-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white
}

.h6d2-wrap-widget.th-phase,
.h6d2-wrap-widget.th-duration,
.h6d2-wrap-widget.th-focus,
.h6d2-wrap-widget.th-deliverable {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: left
}

.h6d2-wrap-widget.table-row:nth-child(even) {
    background: #f8f9fa
}

.h6d2-wrap-widget.table-row:nth-child(odd) {
    background: white
}

.h6d2-wrap-widget.td-phase,
.h6d2-wrap-widget.td-duration,
.h6d2-wrap-widget.td-focus,
.h6d2-wrap-widget.td-deliverable {
    padding: 25px 20px;
    font-size: 16px;
    border-bottom: 1px solid #e1e5e9
}

.h6d2-wrap-widget.td-phase {
    font-weight: 700;
    color: #ff6b35
}

.h6d2-wrap-widget.instructor-credentials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%)
}

.h6d2-wrap-widget.credentials-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50
}

.h6d2-wrap-widget.credentials-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px
}

.h6d2-wrap-widget.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px
}

.h6d2-wrap-widget.credential-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border-top: 4px solid #ff6b35
}

.h6d2-wrap-widget.credential-category {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px
}

.h6d2-wrap-widget.credential-detail {
    color: #666;
    line-height: 1.7
}

.h6d2-wrap-widget.program-guarantee-detailed {
    padding: 80px 0;
    background: white
}

.h6d2-wrap-widget.guarantee-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.h6d2-wrap-widget.guarantee-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50
}

.h6d2-wrap-widget.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px
}

.h6d2-wrap-widget.guarantee-details,
.h6d2-wrap-widget.guarantee-conditions {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border: 3px solid #e1e5e9
}

.h6d2-wrap-widget.guarantee-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px
}

.h6d2-wrap-widget.guarantee-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px
}

.h6d2-wrap-widget.guarantee-list {
    list-style: none;
    padding: 0
}

.h6d2-wrap-widget.guarantee-condition {
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    padding-left: 25px
}

.h6d2-wrap-widget.guarantee-condition::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700
}

.h6d2-wrap-widget.next-steps-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%)
}

.h6d2-wrap-widget.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center
}

.h6d2-wrap-widget.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px
}

.h6d2-wrap-widget.cta-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7
}

.h6d2-wrap-widget.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.h6d2-wrap-widget.cta-primary,
.h6d2-wrap-widget.cta-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease
}

.h6d2-wrap-widget.cta-primary {
    background: white;
    color: #ff6b35
}

.h6d2-wrap-widget.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3)
}

.h6d2-wrap-widget.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white
}

.h6d2-wrap-widget.cta-secondary:hover {
    background: white;
    color: #ff6b35
}

.h6d2-wrap-widget.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px
}

.h6d2-wrap-widget.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px
}

.h6d2-wrap-widget.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px
}

.h6d2-wrap-widget.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6
}

.h6d2-wrap-widget.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white
}

.h6d2-wrap-widget.footer-address,
.h6d2-wrap-widget.footer-phone,
.h6d2-wrap-widget.footer-email {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    line-height: 1.5
}

.h6d2-wrap-widget.footer-link {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease
}

.h6d2-wrap-widget.footer-link:hover {
    color: #ff6b35
}

.h6d2-wrap-widget.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center
}

.h6d2-wrap-widget.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px
}

.h6d2-wrap-widget.legal-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    background: white;
    min-height: 70vh
}

.h6d2-wrap-widget.legal-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center
}

.h6d2-wrap-widget.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555
}

.h6d2-wrap-widget.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 20px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px
}

.h6d2-wrap-widget.legal-content p {
    margin-bottom: 20px
}

.h6d2-wrap-widget.legal-content ul {
    margin: 20px 0;
    padding-left: 30px
}

.h6d2-wrap-widget.legal-content li {
    margin-bottom: 10px;
    color: #666
}

.h6d2-wrap-widget.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.h6d2-wrap-widget.thank-you-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px
}

.h6d2-wrap-widget.thank-you-title {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px
}

.h6d2-wrap-widget.thank-you-message {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px
}

.h6d2-wrap-widget.thank-you-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid #e1e5e9
}

.h6d2-wrap-widget.thank-you-back {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block
}

.h6d2-wrap-widget.thank-you-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4)
}

@media (max-width: 768px) {
    .h6d2-wrap-widget.container-header {
        flex-direction: column;
        height: auto;
        padding: 20px
    }
    
    .h6d2-wrap-widget.main-navigation {
        margin-top: 20px;
        gap: 20px
    }
    
    .h6d2-wrap-widget.hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }
    
    .h6d2-wrap-widget.hero-main-title {
        font-size: 36px
    }
    
    .h6d2-wrap-widget.hero-benefits {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.story-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.infographic-steps {
        grid-template-columns: 1fr;
        gap: 30px
    }
    
    .h6d2-wrap-widget.testimonials-layout {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.advantages-wrapper {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
    }
    
    .h6d2-wrap-widget.methodology-content {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.method-highlights {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.faq-layout {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.guarantee-container {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.cookie-content {
        flex-direction: column;
        text-align: center
    }
    
    .h6d2-wrap-widget.diagonal-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.contact-main-title {
        font-size: 36px
    }
    
    .h6d2-wrap-widget.split-container {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .h6d2-wrap-widget.about-main-title {
        font-size: 36px
    }
    
    .h6d2-wrap-widget.form-grid {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.guarantee-grid {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.credentials-list {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.cta-buttons {
        flex-direction: column;
        align-items: center
    }
    
    .h6d2-wrap-widget.program-breakdown {
        font-size: 14px
    }
    
    .h6d2-wrap-widget.th-phase,
    .h6d2-wrap-widget.th-duration,
    .h6d2-wrap-widget.th-focus,
    .h6d2-wrap-widget.th-deliverable {
        padding: 15px 10px;
        font-size: 14px
    }
    
    .h6d2-wrap-widget.td-phase,
    .h6d2-wrap-widget.td-duration,
    .h6d2-wrap-widget.td-focus,
    .h6d2-wrap-widget.td-deliverable {
        padding: 20px 10px;
        font-size: 14px
    }
}

@media (max-width: 480px) {
    .h6d2-wrap-widget.hero-main-title {
        font-size: 28px
    }
    
    .h6d2-wrap-widget.stats-title,
    .h6d2-wrap-widget.programs-title,
    .h6d2-wrap-widget.process-title {
        font-size: 32px
    }
    
    .h6d2-wrap-widget.masonry-grid {
        grid-template-columns: 1fr
    }
    
    .h6d2-wrap-widget.program-card.wide-card {
        grid-column: span 1
    }
    
    .h6d2-wrap-widget.stats-table {
        border-spacing: 20px 0
    }
    
    .h6d2-wrap-widget.stat-number {
        font-size: 36px
    }
}

@media (max-width: 992px) {
  .h6d2-wrap-widget.stats-table {
    border-spacing: 20px 0;
  }

  .h6d2-wrap-widget.stat-number {
    font-size: 36px;
  }

  .h6d2-wrap-widget.stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .h6d2-wrap-widget.stats-table tr {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .h6d2-wrap-widget.stat-cell {
    flex: 1 1 calc(50% - 20px);
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .h6d2-wrap-widget.stat-cell {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 25px 15px;
  }

  .h6d2-wrap-widget.stat-number {
    font-size: 28px;
  }

  .h6d2-wrap-widget.stats-title {
    font-size: 28px;
  }

  .h6d2-wrap-widget.stats-subtitle {
    font-size: 16px;
  }
}
