/* General */
.container {
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.container.boxed-container-small {
    max-width: 480px;
}

.container.boxed-container-medium {
    max-width: 592px;
}

.container.boxed-container-large {
    max-width: 670px;
}

.container.component-size-medium {
    /* max-width: 670px; */
    max-width: 700px;
}

@media (max-width: 1100px) {
    .container {
        padding: 0 20px;
    }
}

.component-section {
    margin: 96px auto !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.section-header .section-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-header .section-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    text-align: right;
    color: var(--gray-color);
    max-width: 273px;
    margin: 0;
}

.section-header.breabcrumb-container .section-subtitle {
    max-width: 686px;
}

@media (max-width: 991px) {
    .section-header {
        gap: 20px;
        flex-direction: column;
    }
    .section-header .section-subtitle {
        max-width: unset;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .section-header .section-subtitle {
        max-width: unset;
    }
}

.primary-color-text {
    color: var(--primary-color) !important;
}

.gray-color-text {
    color: var(--gray-color) !important;
}

.padding-20 {
    padding: 20px;
}

/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    height: 100%;
    margin: 30px auto !important;
    border-radius: 4px;
    /* width: 95%; */
}

.hero-section {
    position: relative;
    min-height: 816px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-overlay {
        position: unset;
    }
    .hero-section {
        min-height: unset;
    }
}

.hero-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 125%;
}

.hero-subtitle {
    font-size: 16px;
    color: #fff;
    line-height: 125%;
}

.hero-right {
    flex: 1;
    max-width: 404px;
    display: flex;
    justify-content: flex-end;
}

.hero-cta-section {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.hero-cta-button {
    background: var(--primary-color);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.hero-cta-button:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.hero-description {
    background: #fff;
    padding: 0 12px;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 140%;
}

.hero-description p {
    margin: 8px 0;
}

.hero-stats-section {
    margin-top: auto;
}

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

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    justify-content: space-between;
}

.stat-image img {
    width: 62px;
    height: 62px;
    object-fit: cover;
}

.stat-content {
    color: var(--primary-color);
}

.stat-value {
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
}

.stat-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
}

@media (max-width: 768px) {
    .hero-top-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left,
    .hero-right {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-description {
        max-width: 100%;
    }
}

.hero-section.alignfull,
.hero-section.alignwide {
    width: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-cta-icon {
    width: 48px;
    height: 48px;
}

/* Brands Section */
.brands {
    margin: 212px -8px !important;
    min-width: calc(100vw - 16px);
}

.brands-section {
    display: flex;
    justify-content: space-evenly;
    gap: 24px;
    width: 100%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}
.brands-section::-webkit-scrollbar {
    display: none;
}
.brands-section .brand-item {
    min-width: 124px;
    min-height: 48px;
    align-content: center;
    place-items: center;
    background-color: var(--light-gray-color);
    border-radius: 4px;
}
.brands-section .brand-item .brand-image {
    display: flex;
    width: fit-content;
    height: auto; 
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brands {
        margin: 96px -8px !important;
    }
}

/* List Section */
.list-block {
    max-width: 1060px;
    margin: 212px auto !important;
    padding: 48px 0;
}

.list-block .list-main-title {
    margin: 0;
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.list-block .list-container {
    display: flex;
    gap: 24px;
}

.list-block .light-gray-border {
    background: rgba(246, 246, 246, 0.5);
    padding: 8px;
    border-radius: 4px;
    flex: 1;
}

.list-block .list-column {
    background: var(--light-gray-color);
    border-radius: 4px;
    padding: 24px;
    height: calc(100% - 48px);
}
.list-block .list-column .list-title {
    margin: 0;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #5C5C5C;
}
.list-block .list-column .list-title.checked {
    color: var(--primary-color);
}

.list-block .list-content-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.list-block .list-content-block .list-item {
    display: flex;
    align-items: start;
    gap: 8px;
    color: var(--gray-color);
}
.list-block .list-content-block .list-item .checked-icon {
    padding-top: 2px;
}
.list-block .list-content-block .list-item .not-checked-icon {
    padding-top: 3px;
}

@media (max-width: 768px) {
    .list-block {
        margin: 96px auto !important;
        padding: 0;
    }

    .list-block .list-main-title {
        margin-bottom: 24px;
    }

    .list-block .list-container {
        flex-direction: column;
    }
}

/* Tabs Block */
.tabs-block-wrapper {
    background-color: var(--light-gray-color);
    width: 100%;
    max-width: 100%;
    padding: 48px 0;
}

.tabs-block-wrapper .tabs-section {
    display: flex;
    gap: 60px;
    /* width: 95%; */
}

@media (max-width: 768px) {
    .tabs-block-wrapper .tabs-section {
        flex-direction: column-reverse;
    }
}

.tabs-block-wrapper .tabs-left {
    flex: 1;
    position: relative;
    min-width: 0;
    max-width: 542px;
}

.tabs-block-wrapper .tab-image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.tabs-block-wrapper .tab-image-container {
    position: relative;
    width: 100%;
    height: 328px;
    overflow: hidden;
}

.tabs-block-wrapper .tab-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tabs-block-wrapper .tab-image-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.tabs-block-wrapper .tab-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tabs-block-wrapper .tab-overlay-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--secondary-color);
    padding: 8px;
    margin: 24px;
    border-radius: 4px;
    /* background: linear-gradient(134.57deg, rgba(246, 246, 246, 0.2) -17%, rgba(246, 246, 246, 0.4) 50%); */
    background: linear-gradient(134.57deg,rgba(255, 255, 255, 0.7) -17%,rgba(255, 255, 255, 1) 50%);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.tabs-block-wrapper .tab-title {
    margin: 0 0 10px;
}

.tabs-block-wrapper .tabs-right {
    flex: 1;
    min-width: 220px;
    max-width: 336px;
}

.tabs-block-wrapper .tabs-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    text-transform: capitalize;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .tabs-block-wrapper .tabs-title {
        font-size: 24px;
    }
}

.tabs-block-wrapper .tabs-scroll-container {
    position: relative;
}

.tabs-block-wrapper .tabs-scroll-track {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    z-index: 1;
}

.tabs-block-wrapper .tabs-scroll-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.tabs-block-wrapper .tabs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 16px;
}

.tabs-block-wrapper .tab-list-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 0px;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--gray-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.tabs-block-wrapper .tab-list-item:hover {
    transform: scale(0.95);
}

.tabs-block-wrapper .tab-list-item.active {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--primary-color);
}

/* Card Items Block Styles */
.card-items-block {
    padding: 60px 0;
}

.card-items-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.card-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--light-gray-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-item-image {
    flex-shrink: 0;
    width: 132px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.padding-20 .card-item-image {
    width: 116px;
    height: 116px;
}

.card-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 96px;
    justify-content: center;
    margin: 10px 15px 10px 0;
}

.image-position-right .card-item:not(.padding-20) {
    margin: 10px 15px 10px 15px;
}

.card-item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--primary-color);
    margin: 0;
}

.card-item-subtitle {
    color: var(--gray-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    margin: 0;
}

.card-item-link-wrap {
    display: flex;
    justify-content: flex-end;
}

.card-item-link {
    color: var(--secondary-color);
    transition: color 0.3s ease;
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    text-decoration: underline;
}

.card-item-link:hover {
    color: var(--primary-color);
}

@media (max-width: 1100px) {
    .card-items-container {
        padding: 0 20px;
    }
}

/* Card Items Dark Mode Styles */
.card-items-block.dark-mode .card-item {
    background-color: var(--primary-color);
}

.card-items-block.dark-mode .card-item-title {
    color: #ffffff;
}

.card-items-block.dark-mode .card-item-subtitle {
    color: #ffffff;
}

.card-items-block.dark-mode .card-item-link {
    color: #ffffff;
}

.card-items-block.dark-mode .card-item-link:hover {
    color: var(--light-gray-color);
}

/* Card Items Image Position Styles */
.card-items-block.image-position-right .card-item {
    flex-direction: row-reverse;
}

.card-items-block.image-position-right .card-item-image {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media (max-width: 768px) {
    .card-items-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .card-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-items-block.image-position-right .card-item {
        flex-direction: row;
    }
    
    .card-items-block.image-position-right .card-item-image {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}

/* Login block */
.login-block {
    margin: 220px 0 !important;
    max-width: 100%;
}
.login-block .login-content {
    max-width: 592px;
    margin: 40px auto !important;
    gap: 0;
}

.login-block .description-text {
    max-width: 471px;
}

.login-block .action-block {
    width: 100%;
    justify-content: end;
    gap: 12px;
}

.registration-btn a {
    transition: all 0.3s ease;
}
.registration-btn a:hover {
    background: #3F659C !important;
}

@media (max-width: 768px) {
    .login-block {
        margin: 96px 0 !important;
    }

    .login-block .login-content {
        margin: 24px !important;
    }
}

/* Accordion Block */
.accordion-block-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 48px 0;
}

.accordion-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    /* width: 95%; */
}

@media (max-width: 768px) {
    .accordion-section {
        flex-direction: column;
        gap: 30px;
    }
}

.accordion-left {
    width: 50%;
    flex-shrink: 0;
    background-color: var(--light-gray-color);
    padding: 20px 25px;
    border-radius: 4px;
}

.accordion-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 125%;
    color: var(--secondary-color);
    margin: 0 0 16px 0;
    max-width: 392px;
}

.accordion-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--gray-color);
    margin: 0 0 32px 0;
    max-width: 392px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-title-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 125%;
    color: var(--gray-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.accordion-header.active .accordion-title-text {
    color: var(--primary-color);
}

.accordion-header:hover .accordion-title-text {
    transform: scale(0.95);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--gray-color);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 5px 24px 0px 0px;
    color: var(--gray-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.accordion-content-inner p {
    margin: 0 0 16px 0;
}

.accordion-content-inner p:last-child {
    margin-bottom: 0;
}

.accordion-left {
    width: calc(50% - 20px);
    flex-shrink: 0;
    background-color: var(--light-gray-color);
    padding: 25px;
    border-radius: 4px;
    box-sizing: border-box;
}

.accordion-right {
    width: calc(50% - 20px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.accordion-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .accordion-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .accordion-left {
        width: 100%;
    }

    .accordion-right {
        display: none;
    }
    
    .accordion-title {
        font-size: 24px;
    }
    
    .accordion-title-text {
        font-size: 16px;
    }
    
    .accordion-content-inner {
        font-size: 14px;
    }
    
    .accordion-image-container {
        height: 300px;
    }
}

/* @media (max-width: 480px) {
    .hero-container,
    .tabs-block-wrapper .tabs-section,
    .accordion-section {
        width: 85%;
    }
} */

/* Info Block */
.info-block-wrapper {
    width: 100%;
    max-width: 100%;
}

.info-section {
    display: flex;
    /* height: 388px; */
    gap: 8px;
}

.info-left {
    width: 57%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
}

.component-size-medium .info-right {
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.component-size-medium .info-right {
    height: 250px;
}

.info-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.info-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    color: var(--primary-color);
}

.info-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    overflow: auto;
}

/* Light Mode Styles */
.info-block-wrapper.light-mode .info-left {
    background-color: var(--light-gray-color);
}

.info-block-wrapper.light-mode .info-title {
    color: var(--primary-color);
    margin: 0;
}

.info-block-wrapper.light-mode .info-description {
    color: var(--gray-color);
}

/* Dark Mode Styles */
.info-block-wrapper.dark-mode .info-left {
    background-color: var(--primary-color);
}

.info-block-wrapper.dark-mode .info-title {
    color: #ffffff;
}

.info-block-wrapper.dark-mode .info-description {
    color: #ffffff;
}

/* Image Position Styles */
.info-block-wrapper.image-position-left .info-section {
    flex-direction: row-reverse;
}

/* Medium Size */
.info-section.component-size-medium {
    height: unset;
}

.info-block-wrapper .component-size-medium .info-left {
    background-color: transparent;
    justify-content: flex-start;
    padding: 0px 10px;
    /* width: 60%; */
    width: 66%;
}

.info-block-wrapper .component-size-medium .info-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-block-wrapper .component-size-medium .info-description p {
    /* margin: 5px 0; */
    margin: 7px 0;
    line-height: 21px;
}

.info-block-wrapper .component-size-medium .info-right {
    width: 40%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column !important;
        height: auto;
    }
    
    .info-left,
    .info-right {
        width: 100%;
    }
    
    .info-left {
        padding: 30px 20px;
    }
    
    .info-right {
        /* height: 250px; */
    }
    
    .info-title {
        font-size: 24px;
    }
    
    .info-description {
        font-size: 14px;
    }

    .component-size-medium .info-section {
        align-items: center;
    }

    .info-section.component-size-medium {
        height: unset;
        align-items: center;
    }

    .info-block-wrapper .component-size-medium .info-left {
        width: 100%;
    }

    .info-block-wrapper .component-size-medium .info-right {
        width: 250px;
    }
}

/* Promo Block */
.promo-block-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 60px 0;
}

.promo-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promo-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 125%;
    color: var(--secondary-color);
    margin: 0;
}

.promo-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--gray-color);
    margin: 0;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-shortcode {
    width: 100%;
}

.promo-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.promo-actions .btn {
    font-weight: 700;
}

.btn {
    border-style: none;
    border-width: 0px;
    border-radius: 4px;
    background-color: #092b50;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.256), 16px);
    line-height: 1;
    text-decoration: none;
}

/* Light Mode Styles */
.promo-block-wrapper.light-mode {
    background-color: var(--light-gray-color);
}

.promo-block-wrapper.light-mode .promo-title {
    color: var(--primary-color);
}

.promo-block-wrapper.light-mode .promo-subtitle {
    color: var(--gray-color);
}

.primary-button {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.secondary-button {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background: var(--light-green-color);
    border-color: var(--light-green-color);
}

/* Dark Mode Styles */
.promo-block-wrapper.dark-mode {
    background-color: var(--primary-color);
}

.promo-block-wrapper.dark-mode .promo-title {
    color: #fff;
}

.promo-block-wrapper.dark-mode .promo-subtitle {
    color: #fff;
}

.dark-mode .primary-button {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.dark-mode .primary-button:hover {
    opacity: 0.7;
}

.dark-mode .secondary-button {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.dark-mode .secondary-button:hover {
    background: var(--light-green-color);
    border-color: var(--light-green-color);
}

/* .dark-mode .secondary-button {
    background: #fff;
    color: var(--secondary-color);
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.dark-mode .secondary-button:hover {
    color: var(--primary-color);
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-block-wrapper {
        padding: 30px 0;
    }
    
    .promo-section {
        gap: 20px;
    }
    
    .promo-title {
        font-size: 32px;
    }
    
    .promo-subtitle {
        font-size: 14px;
    }
    
    .promo-button {
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Submit Button */
.submit-btn {
    font-weight: 700;
    padding: 10px 25px;
}

/* Product Item Block */
.product-item-block-wrapper {
    width: 100%;
    max-width: 100%;
}

.product-item-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-item-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-item-left {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 4px;
}

.product-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-item-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    color: var(--primary-color);
    margin: 0;
}

.product-item-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: var(--primary-color);
}

.product-item-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--gray-color);
}

.product-item-content p {
    margin: 0 0 12px 0;
}

.product-item-content p:last-child {
    margin-bottom: 0;
}

.product-item-right {
    flex: 1;
    max-width: 400px;
}

.product-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--gray-color);
}

.product-item-list-item .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--primary-color);
}

.product-item-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.product-item-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.product-item-link-button:hover {
    background-color: var(--light-green-color);
    color: #ffffff;
}

.product-item-link-button svg {
    transition: transform 0.3s ease;
}

.product-item-link-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .product-item-body {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-item-left {
        gap: 15px;
    }
    
    .product-item-title {
        font-size: 20px;
    }
    
    .product-item-subtitle,
    .product-item-content,
    .product-item-list-item {
        font-size: 14px;
    }
    
    .product-item-right {
        max-width: 100%;
    }
    
    .product-item-footer {
        justify-content: center;
    }
    
    .product-item-link-button {
        width: 100%;
        justify-content: center;
    }
}

/* Locations Block */
.locations-block-wrapper {
    width: 100%;
    max-width: 100%;
}

.locations-section {
    display: flex;
    flex-direction: column;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.location-item {
    width: 100%;
    max-width: 100%;
}

.location-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: var(--primary-color);
}

.location-address {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.location-phone,
.location-email {
    font-size: 16px;
    color: var(--gray-color);
}

.location-phone a,
.location-email a {
    color: inherit;
    transition: color 0.3s ease;
}

.location-phone a:hover,
.location-email a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Card Items Medium Size Styles */
.card-items-block.item-size-medium .card-item {
    height: 218px;
    position: relative;
    overflow: hidden;
}

.card-items-block.item-size-medium .card-item .card-item-title {
    font-size: 20px;
}

.card-items-block.item-size-medium .card-item-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 310px;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.card-items-block.item-size-medium .card-item-image img {
    width: unset;
    height: unset;
    object-fit: unset;
    object-position: unset;
}

.card-items-block.item-size-medium .card-item-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

/* Dark Mode Adjustments for Medium Size */

.card-items-block.item-size-medium.dark-mode .card-item-title,
.card-items-block.item-size-medium.dark-mode .card-item-subtitle,
.card-items-block.item-size-medium.dark-mode .card-item-link {
    color: var(--primary-color);
}

.card-items-block.item-size-medium.dark-mode .card-item-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .card-items-block.item-size-medium .card-item {
        height: 120px;
    }
    
    .card-items-block.item-size-medium .card-item-title {
        font-size: 16px;
    }
    
    .card-items-block.item-size-medium .card-item-subtitle {
        font-size: 12px;
    }
    .card-items-block.item-size-medium .card-item-image {
        width: unset;
        max-width: 150px;
        height: auto;
    }
    .card-items-block.item-size-medium .card-item-image img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-name {
        font-size: 14px;
    }
    
    .location-address,
    .location-phone,
    .location-email {
        font-size: 14px;
    }
}
