body .content-md {
    padding: 0;
}

html body .body div.main.banner-auto {
    padding-bottom: 0;
}

body p {
    padding: 0;
    margin: 0;
}

.section {
    width: 100%;
    overflow: hidden;
}

.section-container {
    width: 1564px;
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: left;
    margin-bottom: 32px;
}

.section-title {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: #202020;
    margin: 0;
    padding: 0;
}

.section-subtitle {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .section-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-header {
        margin-bottom: 24px;
    }
}

/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
}

.hero-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
}

/* Left Panel */
.hero-section .left-panel {
    display: flex;
    flex-direction: column;
    padding: 64px 32px;
}

.hero-section .toggle-switch .icon {
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='32' viewBox='0 0 52 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='52' height='32' rx='16' fill='%230F479C'/%3E%3Ccircle cx='36' cy='16' r='14' fill='white'/%3E%3Cpath d='M34.046 21L29.5 16.2599L30.6365 15.0748L34.046 18.6299L41.3635 11L42.5 12.185L34.046 21Z' fill='%230F479C'/%3E%3C/svg%3E%0A");
}

/* Main Heading */
.hero-section .main-heading {
    color: #202020;
    font-family: Montserrat;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    margin: 0;
    margin-top: 90px;
}

/* Benefits List */
.hero-section .benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 0;
}

.hero-section .benefits-list li {
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    color: #202020;
}

.hero-section .benefits-list li::before {
    top: 16px;
}

/* CTA Buttons */
.hero-section .cta-buttons {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Telegram Link */
.hero-section .telegramWidget {
    margin-top: 30px;
}

/* Right Panel */
.hero-section .right-panel {
    height: 100%;
    background-color: #ECF7FF;
    position: absolute;
    top: 0;
    left: 50%;
    width: 50vw;
    overflow: hidden;
}

/* Experts Grid */
.hero-section .experts-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-section .expert-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-section .expert-item__bg {
    position: absolute;
    z-index: 1;
}

.hero-section .expert-item__bg:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background-color: transparent;
    background-image:
        radial-gradient(circle at 50% 48%,
            rgba(211, 229, 255, 0.5) 0%,
            rgba(211, 229, 255, 0.5) 34%,
            transparent 35%),
        radial-gradient(circle at 50% 48%,
            rgba(211, 229, 255, 0.3) 0%,
            rgba(211, 229, 255, 0.3) 43%,
            transparent 44%),
        radial-gradient(circle at 50% 48%,
            rgba(211, 229, 255, 0.3) 0%,
            rgba(211, 229, 255, 0.3) 52%,
            transparent 53%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Expert Avatar */
.hero-section .expert-avatar {
    border-radius: 50%;
    overflow: hidden;
    background: #D3E5FF;
    transition: all 0.3s ease;
    position: relative;
}

.hero-section .expert-avatar:hover {
    transform: scale(1.05);
}

.hero-section .expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Expert Label */
.hero-section .expert-label {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #0F479C;
    text-align: center;
    width: max-content;
    max-width: 200px;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
}

.hero-section .expert-item.expert_1 {
    top: 10%;
    left: 37%;
    animation-delay: 0s;
}

.hero-section .expert-item.expert_1 .expert-avatar {
    width: 280px;
    height: 280px;
}

.expert-item__bg.expert_1 {
    width: 280px;
    height: 280px;
    top: 10%;
    left: 37%;
}

.hero-section .expert-item.expert_2 {
    top: 11%;
    left: 71%;
    animation-delay: 0.5s;
}

.hero-section .expert-item.expert_2 .expert-avatar {
    width: 140px;
    height: 140px;
}

.hero-section .expert-item.expert_2 .expert-label {
    right: 35%;
    bottom: -6%;
}

.expert-item__bg.expert_2 {
    width: 140px;
    height: 140px;
    top: 11%;
    left: 71%;
}

.hero-section .expert-item.expert_3 {
    top: 31%;
    left: 7%;
    animation-delay: 1s;
}

.hero-section .expert-item.expert_3 .expert-avatar {
    width: 120px;
    height: 120px;
}

.hero-section .expert-item.expert_3 .expert-label {
    left: -45%;
    bottom: -8%;
}

.expert-item__bg.expert_3 {
    width: 120px;
    height: 120px;
    top: 31%;
    left: 7%;
}

.hero-section .expert-item.expert_4 {
    top: 38%;
    left: 24%;
    animation-delay: 1.5s;
}

.hero-section .expert-item.expert_4 .expert-avatar {
    width: 220px;
    height: 220px;
}

.hero-section .expert-item.expert_4 .expert-label {
    right: 50%;
    bottom: 6%;
}

.expert-item__bg.expert_4 {
    width: 220px;
    height: 220px;
    top: 38%;
    left: 24%;
}

.hero-section .expert-item.expert_5 {
    top: 76%;
    left: 19%;
    animation-delay: 2s;
}

.hero-section .expert-item.expert_5 .expert-avatar {
    width: 92px;
    height: 92px;
}

.hero-section .expert-item.expert_5 .expert-label {
    right: -70%;
    bottom: 25%;
}

.expert-item__bg.expert_5 {
    width: 92px;
    height: 92px;
    top: 76%;
    left: 19%;
}

.hero-section .expert-item.expert_6 {
    top: 58%;
    left: 50%;
    animation-delay: 2.5s;
}

.hero-section .expert-item.expert_6 .expert-avatar {
    width: 190px;
    height: 190px;
}

.hero-section .expert-item.expert_6 .expert-label {
    right: -23%;
    bottom: 22%;
}

.expert-item__bg.expert_6 {
    width: 190px;
    height: 190px;
    top: 58%;
    left: 50%;
}

.hero-section .expert-item.expert_7 {
    top: 50%;
    left: 80%;
    animation-delay: 3s;
}

.hero-section .expert-item.expert_7 .expert-avatar {
    width: 104px;
    height: 104px;
}

.hero-section .expert-item.expert_7 .expert-label {
    bottom: 7%;
    right: -20%;
}

.expert-item__bg.expert_7 {
    width: 104px;
    height: 104px;
    top: 50%;
    left: 80%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section .section-container {
        grid-template-columns: 1fr;
    }

    .hero-section .right-panel {
        position: static;
        width: 100%;
        height: 650px;
    }

    .hero-section .expert-item.expert_3 .expert-label {
        left: -25%;
    }

}

@media (max-width: 600px) {
    .hero-section .left-panel {
        padding: 32px 16px;
    }

    .hero-section .main-heading {
        font-size: 24px;
        line-height: 36px;
        margin-top: 64px;
    }

    .hero-section .benefits-list {
        gap: 8px;
        flex-direction: column;
    }

    .hero-section .benefits-list li {
        font-size: 17px;
        line-height: 24px;
        font-weight: 500;
    }

    .hero-section .benefits-list li::before {
        top: 10px;
    }

    .hero-section .right-panel {
        height: 240px;
    }

    .hero-section .expert-item .expert-avatar,
    .hero-section .expert-item__bg {
        zoom: 0.5;
    }

    .hero-section .expert-item__bg:before {
        width: 175%;
        height: 175%;
    }

    .hero-section .expert-item.expert_4 .expert-label {
        right: 13%;
    }

    .hero-section .expert-item.expert_5 {
        top: 80%;
        left: 15%;
    }

    .expert-item__bg.expert_5 {
        top: 80%;
        left: 15%;
    }

    .hero-section .expert-label {
        font-size: 6px;
        line-height: normal;
        max-width: 100px;
    }
}

@media (max-width: 400px) {
    .hero-section .cta-buttons {
        gap: 24px;
    }

    .hero-section .cta-buttons .btn {
        width: 100%;
    }

    .hero-section .telegramWidget {
        width: 100%;
    }
}

/* ========================================
   Personal Brand Section
   ======================================== */

.personal-brand-section {
    padding: 48px 0px;
    background: white;
}

/* Brand Content Grid */
.brand-content-grid {
    display: flex;
    gap: 32px;
}

/* Expert Profile Card (Left Column) */
.expert-profile-card {
    padding: 24px 20px;
    background-color: #ECF7FF;
    position: relative;
    min-width: 720px;
}

.profile-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    justify-content: center;
    padding-bottom: 124px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.expert-profile-bg {
    position: absolute;
    right: 20px;
    bottom: 64px;
    width: 75%;
    height: 75%;
    border-radius: 8px;
    background: #FFF;
}

.profile-photo-container {
    position: relative;
    width: 400px;
    max-width: 100%;
    height: 380px;
    border-radius: 8px;
    box-shadow: 5.617px 5.617px 6.74px 0 rgba(0, 0, 0, 0.10);
    background-color: #fff;
    margin-top: 42px;
    margin-left: 32px;
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
}

.profile-name-tag {
    position: absolute;
    z-index: 2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    padding: 2px 16px 2px 12px;
    border-radius: 10px;
    background: #4D8DEE;
    left: -30px;
    bottom: -3px;
}

.profile-name-tag::after {
    content: '';
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M28 0C30.2091 0 32 1.79086 32 4V28C32 30.2091 30.2091 32 28 32H4C1.79086 32 0 30.2091 0 28V4C0 1.79086 1.79086 0 4 0H28ZM27.4824 5.30664C26.0984 4.37991 24.235 4.76596 23.3271 6.13379L14.0967 20.043L8.48438 13.2764C7.43182 12.0078 5.53553 11.8287 4.2627 12.8936C3.00648 13.9453 2.84362 15.8047 3.88281 17.0576L12.0635 26.9209C12.6621 27.6423 13.5739 28.0472 14.5254 27.9961C15.4764 27.9447 16.3378 27.4447 16.8545 26.666L28.3066 9.40625C29.2032 8.05455 28.8487 6.22211 27.4824 5.30664Z' fill='white'/%3E%3C/svg%3E");
}

/* Profile Info */
.profile-info {
    padding-right: 8px;
}

.profile-role {
    color: #000;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    max-width: 400px;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    color: #0F479C;
}

.stat-label {
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #0F479C;
}

/* Specialization Tags */
.specialization-tags {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 400px;
    bottom: 6px;
    left: 34px;
}

.spec-tag {
    padding: 12px 16px;
    border-radius: 26px;
    border: 1px solid #0F479C;
    background: #FFF;
    white-space: nowrap;
    color: #0F479C;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/* Feature Cards Grid (Right Column) */
.personal-brand-section .feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.personal-brand-section .feature-card {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #D3E5FF;
}

.personal-brand-section .feature-icon {
    width: 48px;
    height: 48px;
    background-size: cover;
}

.personal-brand-section .feature-title {
    color: #0F479C;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 16px;
}

.personal-brand-section .feature-description {
    color: #676B77;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

/* Responsive Design for Personal Brand Section */
@media (max-width: 1400px) {
    .brand-content-grid {
        flex-direction: column;
    }

    .expert-profile-card {
        min-width: initial;
    }
}

@media (max-width: 740px) {
    .expert-profile-bg {
        width: 90%;
    }

    .profile-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-photo-container {
        margin-left: 0;
    }

    .profile-info {
        padding-right: 16px;
        margin-left: 20px;
    }
}

@media (max-width: 600px) {
    .profile-wrapper {
        padding-bottom: 0;
    }

    .personal-brand-section {
        padding: 24px 0;
    }

    .personal-brand-section .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .specialization-tags {
        position: static;
        margin-left: 20px;
    }
}

/* ========================================
   Monetization Section
   ======================================== */

.monetization-section {
    padding: 0 0 48px;
    position: relative;
}

.monetization-bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 30%;
    background-color: #ECF7FF;
}


.monetization-section .section-header {
    padding-top: 48px;
}

/* Monetization Cards Wrapper */
.monetization-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    transition: 0.4s;
    margin-left: 10%;
}

.monetization-cards-wrapper:has(.monetization-card:nth-child(1).active) .monetization-card:nth-child(2),
.monetization-cards-wrapper:has(.monetization-card:nth-child(1).active) .monetization-card:nth-child(3),
.monetization-cards-wrapper:has(.monetization-card:nth-child(2).active) .monetization-card:nth-child(1),
.monetization-cards-wrapper:has(.monetization-card:nth-child(2).active) .monetization-card:nth-child(3),
.monetization-cards-wrapper:has(.monetization-card:nth-child(3).active) .monetization-card:nth-child(2),
.monetization-cards-wrapper:has(.monetization-card:nth-child(3).active) .monetization-card:nth-child(1),
.monetization-cards-wrapper:has(.monetization-card:nth-child(4).active) .monetization-card:nth-child(5),
.monetization-cards-wrapper:has(.monetization-card:nth-child(4).active) .monetization-card:nth-child(6),
.monetization-cards-wrapper:has(.monetization-card:nth-child(5).active) .monetization-card:nth-child(4),
.monetization-cards-wrapper:has(.monetization-card:nth-child(5).active) .monetization-card:nth-child(6),
.monetization-cards-wrapper:has(.monetization-card:nth-child(6).active) .monetization-card:nth-child(4),
.monetization-cards-wrapper:has(.monetization-card:nth-child(6).active) .monetization-card:nth-child(5) {
    width: calc(25% - 16px);
}

/* Monetization Card */
.monetization-card {
    padding: 24px 0 0 24px;
    border-radius: 8px;
    border: 2px solid #D3E5FF;
    background: #FFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    overflow: hidden;
    width: calc(100%/3 - 16px);
    transition: 0.5s;
}

.monetization-card.active {
    width: calc(50% - 16px);
}

.monetization-card .card-content {
    width: 300px;
    min-width: 300px;
    padding-bottom: 24px;
}

/* Card Icon */
.card-icon {
    width: 48px;
    height: 48px;
    filter: grayscale(100%);
    transform: scale(1.3);
}

.monetization-card:hover .card-icon {
    filter: grayscale(0);
}

.monetization-card.active .card-icon {
    filter: grayscale(0);
    transform: scale(1);
}

/* Card Title */
.card-title {
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #ADB4CB;
    margin-top: 12px;
    transition: all ease 0.3s;
}

.monetization-card:hover .card-title,
.monetization-card.active .card-title {
    color: #0F479C;
}

/* Card Description (for expanded cards) */
.card-description {
    color: #676B77;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    opacity: 0;
}

.monetization-card.active .card-description {
    opacity: 1;
}

/* Card Link */
.card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    color: var(--main-blue, #0F479C);
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    pointer-events: none;
}

.card-link::after {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.73684 17L9 16.2875L13.5132 12L9 7.7125L9.73684 7L15 12L9.73684 17Z' fill='%230F479C'/%3E%3C/svg%3E%0A");
}

.monetization-card.active .card-link {
    pointer-events: all;
    opacity: 1;
}

.monetization-card .card-img {
    opacity: 0;
    width: 260px;
}

.monetization-card.active .card-img {
    opacity: 1;
}

@media (max-width: 1200px) {
    .monetization-cards-wrapper {
        margin-left: 5%;
    }
}

@media (max-width: 1100px) {
    .monetization-bg {
        position: absolute;
        width: 90vw;
        height: 80%;
        left: 0;
        top: 20%;
        background-color: #ECF7FF;
    }

    .monetization-card {
        width: calc(50% - 12px) !important;
    }

    .monetization-card.active {
        width: calc(60% - 12px) !important;
    }

    .monetization-cards-wrapper:has(.monetization-card:nth-child(1).active) .monetization-card:nth-child(2),
    .monetization-cards-wrapper:has(.monetization-card:nth-child(2).active) .monetization-card:nth-child(1),
    .monetization-cards-wrapper:has(.monetization-card:nth-child(3).active) .monetization-card:nth-child(4),
    .monetization-cards-wrapper:has(.monetization-card:nth-child(4).active) .monetization-card:nth-child(3),
    .monetization-cards-wrapper:has(.monetization-card:nth-child(5).active) .monetization-card:nth-child(6),
    .monetization-cards-wrapper:has(.monetization-card:nth-child(6).active) .monetization-card:nth-child(5) {
        width: calc(40% - 16px) !important;
    }
}

@media (max-width: 800px) {
    #monetization .monetization-card {
        width: 100% !important;
    }

    .monetization-card .card-description,
    .monetization-card .card-img {
        opacity: 1;
        display: none;
    }

    .monetization-card.active .card-description,
    .monetization-card.active .card-img {
        display: block;
    }
}

@media (max-width: 500px) {
    #monetization .monetization-card {
        flex-direction: column;
    }

    .monetization-card .card-content {
        width: 100%;
        padding-right: 24px;
        min-width: initial;
    }

    .monetization-card .card-img {
        width: 100%;
    }
}

/* ========================================
   Community Section
   ======================================== */

.community-section {
    background: white;
    padding-bottom: 0;
    padding-top: 40px;
    padding-bottom: 48px;
    position: relative;
}

.community-bg {
    position: absolute;
    width: 100vw;
    height: 65%;
    right: 30%;
    bottom: 17%;
    background-color: #ECF7FF;
}

/* Main Content Area */
.community-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 48px;
}

/* Left Side */
.community-left {
    color: #202020;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    max-width: 540px;
}

/* Right Side - Illustration */
.community-right {
    margin-right: 20px;
}

.community-right img {
    max-width: 100%;
}

/* Feature Blocks */
.community-features {
    position: relative;
    margin-top: -40px;
    display: flex;
    gap: 48px;
}

.community-feature-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    width: 130px;
    min-width: 130px;
    height: 130px;
    border-radius: 75px;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
}

/* Active Block */
.community-feature-block.active {
    width: auto;
}


/* Feature Icon */
.community-section .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-section .feature-icon svg {
    width: 48px;
    height: 48px;
}

/* Feature Content */
.community-section .feature-content {
    display: none;
}

.community-section .community-feature-block.active .feature-content {
    display: block;
}

.community-section .feature-title {
    color: #0F479C;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.community-section .feature-description {
    color: #202020;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    max-width: 300px;
}

/* Responsive Design for Community Section */
@media (max-width: 1100px) {
    .community-bg {
        width: calc(100% - 64px);
        left: 32px;
        bottom: 110px;
        height: 50%;
    }

    .community-content {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 32px;
        padding: 0 24px;

    }

    .community-left {
        padding-left: 18px;
    }

    .community-right {
        margin-right: 0;
    }

    .community-section .community-feature-block.active .feature-content {
        display: none;
    }

    .community-features {
        margin-top: 100px;
        margin-left: 24px;
    }

    .community-feature-block.active {
        width: 130px;
    }
}

@media (max-width: 600px) {
    .community-bg {
        width: 100%;
        left: 0;
    }

    .community-content {
        gap: 24px;
    }

    .community-left {
        font-family: Roboto;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        padding: 0;
    }

    .community-features {
        margin: 0;
        margin-top: 70px;
        justify-content: center;
    }

    .community-feature-block:last-child {
        display: none !important;
    }
}

/* ========================================
   Practice & Experience Section
   ======================================== */

.practice-section {
    background-color: #ECF7FF;
    padding: 48px 0;
}

.practice-content {
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Side - Light Blue Background */
.practice-left {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: #202020;
    max-width: 415px;
}

/* Right Side - White Background */
.practice-right {
    background: white;
    padding: 48px 0 32px 48px;
    position: relative;
    flex-shrink: 0;
}

.practice-right::after {
    position: absolute;
    left: 100%;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* Navigation Tabs */
.practice-nav {
    display: flex;
    gap: 32px;
    overflow-y: auto;
    white-space: nowrap;
    padding-bottom: 12px;
}

.practice-nav-item {
    color: #ADB4CB;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.practice-nav-item:hover,
.practice-nav-item.active {
    color: #0F479C;
}

/* Content Area */
.practice-content-area {
    display: none;
    gap: 20px;
    margin-top: 12px;
}

.practice-content-area.active {
    display: flex;
}

.practice-info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.practice-description {
    color: #202020;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    max-width: 295px;
    margin-top: 60px;
}

.practice-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0F479C !important;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: auto;
}

.practice-link.mobile {
    display: none;
}

.practice-link::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.73684 17L9 16.2875L13.5132 12L9 7.7125L9.73684 7L15 12L9.73684 17Z' fill='%230F479C'/%3E%3C/svg%3E%0A");
    flex-shrink: 0;
}

/* Main Image */
.practice-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-width: 540px;
}

/* Responsive Design for Practice Section */
@media (max-width: 1300px) {
    .practice-content {
        display: block;
    }

    .practice-left {
        display: none;
    }
}

@media (max-width: 1000px) {
    .practice-section .section-container {
        padding-right: 0;
    }

    .practice-section .section-header {
        padding-right: 16px;
    }


    .practice-right {
        flex-shrink: initial;
    }
}

@media (max-width: 600px) {
    .practice-section .section-header {
        padding-left: 16px;
    }

    .practice-section .section-container {
        padding-left: 0;
    }

    .practice-right {
        padding: 24px 0 16px 24px;
    }

    .practice-content-area {
        flex-direction: column;
    }

    .practice-description {
        margin-top: 0;
        font-size: 20px;
        line-height: 30px;
    }

    .practice-link {
        display: none;
    }

    .practice-link.mobile {
        display: flex;
    }
}

/* ========================================
   Cost Optimization Section
   ======================================== */

.cost-section {
    background: #fff;
    padding: 48px 0;
}

/* Benefits Grid */
.cost-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Benefit Card */
.cost-benefit-card {
    padding: 16px 24px;
    border-radius: 8px;
    border: 2px solid #D3E5FF;
    background: #ECF7FF;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Benefit Icon */
.benefit-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Benefit Content */
.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-title {
    color: #0F479C;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.benefit-description {
    color: #202020;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


/* Responsive Design for Cost Section */

@media (max-width: 1000px) {
    .cost-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {}

/* ========================================
   Final CTA Section
   ======================================== */

.final-cta-section {
    background: #D3E5FF;
    padding-top: 48px;
    position: relative;
}

.final-cta-section .section-container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.final-illustration {
    object-fit: contain;
    max-width: 600px;
}

.final-content {}

.final-content .section-header {
    padding-left: 60px;
}

.final-info-card {
    margin-top: 32px;
    background: #FFFFFF;
    padding: 40px 60px;
}

.final-info-card p {
    color: #202020;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.final-info-card p.mobile {
    display: none;
}

.final-info-card strong {
    color: #202020;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.final-info-card-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 72px;
}

.final-info-card-flex .btn {
    flex-shrink: 0;
}

/* Responsive Design for Final CTA Section */
@media (max-width: 1500px) {
    .final-info-card-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1200px) {
    .final-cta-section .section-container {
        flex-direction: column;
    }

    .final-cta-section {
        padding-top: 16px;
    }

    .final-cta-section .section-container {
        gap: 32px;
    }

}

@media (max-width: 600px) {
    .final-cta-section {
        padding-top: 0;
    }

    .final-content .section-header {
        padding-left: 16px;
    }

    .final-cta-section .section-subtitle {
        display: none;
    }

    .final-info-card {
        padding: 16px;
        margin-top: 16px;
    }

    .final-info-card p.mobile {
        display: block;
        padding-bottom: 32px;
    }

    .final-info-card-flex {
        padding-top: 24px;
    }

    .final-info-card-flex .btn {
        align-self: center;
        max-width: 100%;
        white-space: normal;
    }
}