/* AI Assistant Page Styles - Chat Interface */

/* Body background */
body {
    background: #F0F3F5;
}

/* Main Content Styles */
.main-content {
    min-height: 100vh;
    padding-top: 168px;
    padding-bottom: 104px;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* Chat Container Styles */
.chat-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 600px;
    margin: 0 auto;
}

/* Web Version Styles */
@media (min-width: 768px) {
    .chat-container {
        width: 600px;
        gap: 48px;
    }
}

/* Mobile Version Styles */
@media (max-width: 767px) {
    .main-content {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .chat-container {
        width: 100%;
        min-width: 320px;
        gap: 24px;
        padding: 16px;
    }
}

/* 1. Сообщение от автора (Title) */
.chat-message-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

/* Первое сообщение с дополнительным отступом */
.chat-container .chat-message-author.chat-message-first {
    padding-top: 48px !important;
}

/* Мобильная версия для первого сообщения */
@media (max-width: 767px) {
    .chat-container .chat-message-author.chat-message-first {
        padding-top: 80px !important;
    }
}

.chat-message-author .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 12px;
    width: auto;
    min-width: 100px;
    max-width: 488px;
    height: auto;
    border-radius: 32px 32px 32px 6px;
}

.chat-message-author .chat-text {
    width: auto;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}

/* Mobile version for author message */
@media (max-width: 767px) {
    .chat-message-author {
        align-items: flex-start;
        justify-content: center;
    }
    
    .chat-message-author .chat-block {
        padding: 12px 18px;
        gap: 12px;
        max-width: 320px;
        border-radius: 20px 20px 20px 4px;
    }
    
    .chat-message-author .chat-text {
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
}

/* 2. Контент автора (Content) */
.chat-content-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

.chat-content-author .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 12px;
    width: auto;
    min-width: 100px;
    max-width: 488px;
    height: auto;
    background: #FFFFFF;
    border-radius: 32px 32px 32px 6px;
}

.chat-content-author .chat-text {
    width: auto;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}

/* Mobile version for content author */
@media (max-width: 767px) {
    .chat-content-author {
        align-items: flex-start;
        justify-content: center;
    }
    
    .chat-content-author .chat-block {
        padding: 12px 18px;
        gap: 12px;
        max-width: 320px;
        border-radius: 20px 20px 20px 4px;
    }
    
    .chat-content-author .chat-text {
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
}

/* 3. Список автора (Title+Content) */
.chat-list-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

.chat-list-author .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 4px;
    width: 488px;
    min-width: 100px;
    max-width: 488px;
    height: auto;
    background: #FFFFFF;
    border-radius: 32px 32px 32px 6px;
}

.chat-list-author .chat-title {
    width: 424px;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}

.chat-list-author .chat-text {
    width: 424px;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #333333;
}

/* Mobile version for list author */
@media (max-width: 767px) {
    .chat-list-author {
        align-items: flex-start;
        justify-content: center;
    }
    
    .chat-list-author .chat-block {
        padding: 12px 18px;
        gap: 4px;
        width: 488px;
        max-width: 320px;
        border-radius: 20px 20px 20px 4px;
    }
    
    .chat-list-author .chat-title {
        width: 284px;
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
    
    .chat-list-author .chat-text {
        width: 284px;
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
}

/* 4. Сообщение от репортера (Chat) */
.chat-message-reporter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;
    width: 100%;
    height: auto;
}

.chat-message-reporter .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 12px;
    width: auto;
    min-width: 100px;
    max-width: 488px;
    height: auto;
    background: #333333;
    border-radius: 32px 6px 32px 32px;
}

.chat-message-reporter .chat-text {
    width: auto;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}

/* Mobile version for reporter message */
@media (max-width: 767px) {
    .chat-message-reporter {
        align-items: flex-end;
        justify-content: center;
    }
    
    .chat-message-reporter .chat-block {
        padding: 12px 18px;
        gap: 12px;
        width: 320px;
        min-width: 40px;
        max-width: 320px;
        border-radius: 20px 4px 20px 20px;
    }
    
    .chat-message-reporter .chat-text {
        width: 284px;
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
}

/* 5. Картинка (IMG-1) */
.chat-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

/* Группа списков автора с уменьшенным паддингом */
.chat-list-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 100%;
    height: auto;
}

/* Группа картинок с уменьшенным паддингом */
.chat-image-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    height: auto;
}

/* 6. Контент + Кнопка (Content+Button) */
.chat-content-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

.chat-content-button .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    width: 100%;
    min-width: 100px;
    max-width: 488px;
    height: auto;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #FF00FF 0%, #0079FF 100%) border-box;
    border: 3px solid transparent;
    border-radius: 36px 36px 36px 6px;
}

.chat-content-button .chat-text {
    width: auto;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
}

.chat-content-button .chat-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    gap: 16px;
    width: auto;
    height: 44px;
    background: linear-gradient(90deg, #FF00FF 0%, #0079FF 100%);
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.chat-content-button .chat-button-text {
    width: auto;
    height: 24px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.chat-buttons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

/* Анимация блика для градиентной кнопки */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    16% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.chat-content-button .chat-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    gap: 16px;
    width: auto;
    height: 44px;
    background: linear-gradient(90deg, #FF00FF 0%, #0079FF 100%);
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.chat-content-button .chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 5s ease-in-out infinite;
    z-index: 1;
}

.chat-text-button {
    width: auto;
    height: 24px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(90deg, #FF00FF 0%, #0079FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: opacity 0.2s ease;
    padding-left: 8px;
}

.chat-text-button:hover {
    opacity: 0.7;
}

.chat-image .chat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    width: 488px;
    min-width: 280px;
    max-width: 488px;
    height: auto;
    background: #FFFFFF;
    border-radius: 42px 42px 42px 6px;
}

.chat-image .chat-img {
    box-sizing: border-box;
    width: 440px;
    height: auto;
    border: none;
    border-radius: 16px;
    object-fit: cover;
}

/* Mobile version for image */
@media (max-width: 767px) {
    .chat-image .chat-block {
        padding: 12px;
        gap: 24px;
        width: 320px;
        min-width: 280px;
        max-width: 320px;
        border-radius: 24px 24px 24px 4px;
    }
    
    .chat-image .chat-img {
        width: 296px;
        height: auto;
    }
}

/* Mobile version for content+button */
@media (max-width: 767px) {
    .chat-content-button .chat-block {
        padding: 16px;
        gap: 16px;
        width: 100%;
        min-width: 100px;
        max-width: 100%;
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(90deg, #FF00FF 0%, #0079FF 100%) border-box;
        border: 2px solid transparent;
        border-radius: 24px 24px 24px 4px;
    }
    
    .chat-content-button .chat-text {
        width: 100%;
        font-size: 18px;
        line-height: 1.3;
        height: auto;
    }
    
    .chat-content-button .chat-button {
        width: auto;
        height: 44px;
    }
    
    .chat-content-button .chat-button-text {
        width: auto;
        height: 24px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .chat-buttons-container {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .chat-text-button {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* Анимации появления сообщений */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимации для сообщений автора (слева) - управляются JavaScript */
.chat-message-author,
.chat-content-author,
.chat-list-author,
.chat-content-button {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* Анимации для сообщений репортера (справа) - управляются JavaScript */
.chat-message-reporter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* Анимации для картинок - управляются JavaScript */
.chat-image,
.chat-image-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}


/* Modal для увеличения картинок */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.image-modal-close:hover {
    opacity: 0.7;
}

/* Курсор для картинок */
.chat-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.chat-img:hover {
    transform: scale(1.02);
}

/* Принудительный отступ для первого сообщения */
.chat-container .chat-message-author.chat-message-first {
    padding-top: 80px !important;
}

.chat-container .chat-message-author.chat-message-first .chat-block {
    background: #FFFFFF !important;
    border-radius: 32px 32px 32px 6px !important;
    padding: 28px 32px !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 488px !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

@media (max-width: 767px) {
    .chat-container .chat-message-author.chat-message-first {
        padding-top: 80px !important;
    }
    
    .chat-container .chat-message-author.chat-message-first .chat-block {
        background: #FFFFFF !important;
        border-radius: 20px 20px 20px 4px !important;
        padding: 12px 18px !important;
        gap: 12px !important;
        max-width: 320px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* Common block styles */
.ai-assistant-tag,
.ai-assistant-block {
    background: #FFFFFF;
}



.ai-assistant-block,
.data-block,
.hypothesis-block,
.feasibility-block,
.design-block,
.widget-block,
.launch-block,
.outcome-block,
.result-block,
.interview-block {
    position: relative;
}

.data-block,
.hypothesis-block,
.feasibility-block,
.design-block,
.widget-block,
.launch-block,
.outcome-block,
.result-block,
.interview-block {
    background: #F8F9F9;
}

/* Fix for CTA button in footer */
.cta-button--black {
    width: auto !important;
}

.cta-button--black .button-text {
    width: auto !important;
}



/* Fix for footer width to match blocks */
.main-footer-new {
    width: 800px !important;
}

.footer-all {
    width: 800px !important;
}

/* Desktop Styles */
@media (min-width: 1431px) {
    .main-content {
        min-height: 100vh;
        padding-top: 168px;
        color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    /* Block */
    .ai-assistant-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        width: 800px;
        height: auto;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin-bottom: 48px;
    }

    .ai-assistant-container:last-child {
        margin-bottom: 104px;
    }

    /* Tag */
    .ai-assistant-tag {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
        gap: 12px;
        width: auto;
        height: 31px;
        border-radius: 32px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    .tag-text {
        width: auto;
        height: 19px;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #333333;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    /* Block */
    .ai-assistant-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 56px;
        gap: 56px;
        width: 800px;
        height: auto;
        border-radius: 88px;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
    }

    /* Content */
    .ai-assistant-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        width: 600px;
        height: auto;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    .ai-assistant-title {
        width: 600px;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        color: color(display-p3 0.102 0.102 0.102);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .ai-assistant-description {
        width: 600px;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #333333;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Image */
    .ai-assistant-image {
        box-sizing: border-box;
        width: 100%;
        max-width: 688px;
        height: auto;
        border: none;
        border-radius: 16px;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        overflow: hidden;
    }

    .ai-assistant-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Additional content under image */
    .ai-assistant-additional-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
        order: 2;
    }

    .ai-assistant-additional-text {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
        color: #666666;
        margin: 0;
    }
}

/* Medium Desktop Styles (1024px - 1430px) */
@media (min-width: 1024px) and (max-width: 1430px) {
    .main-content {
        min-height: 100vh;
        padding-top: 168px;
        color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Block */
    .ai-assistant-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 16px;
        width: 100%;
        max-width: 800px;
        height: auto;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin-bottom: 72px;
    }

    .ai-assistant-container:last-child {
        margin-bottom: 104px;
    }

    /* Tag */
    .ai-assistant-tag {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
        gap: 12px;
        width: auto;
        height: 31px;
        border-radius: 32px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    .tag-text {
        width: auto;
        height: 19px;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        display: flex;
        align-items: center;
        text-align: center;
        color: #333333;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    /* Block */
    .ai-assistant-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 40px;
        width: 100%;
        height: auto;
        border-radius: 64px;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
    }

    .ai-assistant-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        height: auto;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .ai-assistant-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 36px;
        line-height: 43px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #1A1A1A;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .ai-assistant-description {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
        color: #666666;
        margin: 0;
    }

    .ai-assistant-image {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 24px;
        overflow: hidden;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
    }
}

/* Feasibility Check Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .feasibility-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .feasibility-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .feasibility-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .feasibility-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .feasibility-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Hypothesis Testing Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .hypothesis-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .hypothesis-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .hypothesis-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .hypothesis-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .hypothesis-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .main-content {
        min-height: 100vh;
        padding-top: 0;
        color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }

    .ai-assistant-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 600px;
        margin-bottom: 72px;
    }

    .ai-assistant-container:last-child {
        margin-bottom: 104px;
    }

    .ai-assistant-tag {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
        border-radius: 32px;
    }

    .tag-text {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        text-align: center;
        color: #333333;
    }

    .ai-assistant-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px;
        gap: 16px;
        width: 100%;
        height: auto;
        border-radius: 48px;
    }

    .ai-assistant-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .ai-assistant-title {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        color: #1A1A1A;
        margin: 0;
        height: auto;
    }

    .ai-assistant-description {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #333333;
        margin: 0;
        height: auto;
    }

    .ai-assistant-image {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 16px;
        overflow: hidden;
    }

    .ai-assistant-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Additional content under image */
    .ai-assistant-additional-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
        order: 2;
    }

    .ai-assistant-additional-text {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        color: #666666;
        margin: 0;
    }

    /* Data Blocks List Styles - Tablet */
    .data-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .data-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .data-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .data-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .data-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Interview Blocks List Styles - Tablet */
    .interview-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .interview-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .interview-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .interview-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #1A1A1A;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .interview-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        display: flex;
        align-items: center;
        color: #666666;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Hypothesis Testing Blocks List Styles - Tablet */
    .hypothesis-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .hypothesis-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .hypothesis-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .hypothesis-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .hypothesis-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Text Block Styles - Tablet */
    .text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 40px;
        width: 100%;
        height: auto;
        border-radius: 48px;
        flex: none;
        order: 9;
        align-self: stretch;
        flex-grow: 0;
    }

    .text-block-title {
        width: auto;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        color: color(display-p3 0.102 0.102 0.102);
        flex: none;
        order: 0;
        flex-grow: 0;
        margin: 0;
    }

    /* Feasibility Check Blocks List Styles - Tablet */
    .feasibility-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .feasibility-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .feasibility-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .feasibility-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .feasibility-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .main-content {
        min-height: 100vh;
        padding-top: 0;
        color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    .ai-assistant-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        margin-bottom: 72px;
    }

    .ai-assistant-container:last-child {
        margin-bottom: 104px;
    }

    .ai-assistant-tag {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
        border-radius: 32px;
    }

    .tag-text {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        color: #333333;
    }

    .ai-assistant-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 16px;
        width: 100%;
        height: auto;
        border-radius: 24px;
    }

    .ai-assistant-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .ai-assistant-title {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        color: #1A1A1A;
        margin: 0;
        height: auto;
    }

    .ai-assistant-description {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #333333;
        margin: 0;
        height: auto;
    }

    .ai-assistant-image {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 16px;
        overflow: hidden;
    }

    .ai-assistant-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Additional content under image */
    .ai-assistant-additional-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0;
        order: 2;
    }

    .ai-assistant-additional-text {
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: #666666;
        margin: 0;
    }

    /* Data Blocks List Styles - Mobile */
    .data-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .data-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .data-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .data-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .data-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

/* Interview Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .interview-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .interview-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .interview-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .interview-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: #1A1A1A;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .interview-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #666666;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Interview Blocks List Styles - Mobile */
    .interview-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .interview-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .interview-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .interview-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: #1A1A1A;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .interview-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        display: flex;
        align-items: center;
        color: #666666;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Hypothesis Testing Blocks List Styles - Mobile */
    .hypothesis-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .hypothesis-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .hypothesis-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .hypothesis-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .hypothesis-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    /* Text Block Styles - Mobile */
    .text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px;
        gap: 24px;
        width: 100%;
        height: auto;
        border-radius: 32px;
        flex: none;
        order: 9;
        align-self: stretch;
        flex-grow: 0;
    }

    .text-block-title {
        width: auto;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        color: color(display-p3 0.102 0.102 0.102);
        flex: none;
        order: 0;
        flex-grow: 0;
        margin: 0;
    }

    /* Feasibility Check Blocks List Styles - Mobile */
    .feasibility-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .feasibility-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .feasibility-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .feasibility-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .feasibility-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Data Blocks List Styles */
.data-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.data-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.data-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.data-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.data-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Interview Blocks List Styles */
.interview-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.interview-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 12px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 32px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.interview-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.interview-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    color: #1A1A1A;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.interview-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #666666;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Hypothesis Testing Blocks List Styles */
.hypothesis-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.hypothesis-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.hypothesis-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.hypothesis-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.hypothesis-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Text Block Styles */
.text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 56px;
    gap: 56px;
    width: 800px;
    height: auto;
    border-radius: 88px;
    flex: none;
    order: 9;
    align-self: stretch;
    flex-grow: 0;
}

.text-block-title {
    width: auto;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: color(display-p3 0.102 0.102 0.102);
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
}

/* Feasibility Check Blocks List Styles */
.feasibility-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.feasibility-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.feasibility-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.feasibility-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.feasibility-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Design Blocks List Styles - Desktop */
.design-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.design-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.design-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.design-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.design-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Design Blocks List Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .design-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .design-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .design-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .design-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .design-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Design Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .design-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .design-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .design-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .design-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .design-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Design Blocks List Styles - Mobile */
@media (max-width: 767px) {
    .design-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .design-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 20px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .design-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .design-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .design-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Widget Blocks List Styles - Desktop */
.widget-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.widget-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.widget-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.widget-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.widget-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Widget Blocks List Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .widget-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .widget-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .widget-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .widget-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .widget-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Widget Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .widget-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .widget-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .widget-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .widget-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .widget-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Widget Blocks List Styles - Mobile */
@media (max-width: 767px) {
    .widget-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .widget-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 20px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .widget-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .widget-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .widget-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Launch Blocks List Styles - Desktop */
.launch-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.launch-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.launch-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.launch-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.launch-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Launch Blocks List Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .launch-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .launch-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .launch-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .launch-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .launch-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Launch Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .launch-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .launch-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .launch-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .launch-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .launch-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Launch Blocks List Styles - Mobile */
@media (max-width: 767px) {
    .launch-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .launch-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 20px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .launch-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .launch-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .launch-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Multiple Images Container Styles - Desktop */
.ai-assistant-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    order: 1;
}

/* Multiple Images Container Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .ai-assistant-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        order: 1;
    }
}

/* Multiple Images Container Styles - Mobile */
@media (max-width: 767px) {
    .ai-assistant-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 1;
    }
}

/* Outcome Blocks List Styles - Desktop */
.outcome-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.outcome-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.outcome-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.outcome-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.outcome-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Outcome Blocks List Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .outcome-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .outcome-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .outcome-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .outcome-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .outcome-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Outcome Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .outcome-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .outcome-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .outcome-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .outcome-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .outcome-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Outcome Blocks List Styles - Mobile */
@media (max-width: 767px) {
    .outcome-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .outcome-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 20px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .outcome-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .outcome-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .outcome-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Result Blocks List Styles - Desktop */
.result-blocks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    order: 2;
}

.result-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 8px;
    width: 100%;
    max-width: 688px;
    height: auto;
    
    border-radius: 40px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.result-block-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: auto;
}

.result-block-title {
    width: 100%;
    height: auto;
    font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.result-block-description {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: color(display-p3 0.200 0.200 0.200);
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Result Blocks List Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .result-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .result-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 24px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .result-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .result-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .result-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Result Blocks List Styles - Medium Desktop */
@media (min-width: 1024px) and (max-width: 1430px) {
    .result-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        order: 2;
    }

    .result-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 12px;
        width: 100%;
        height: auto;
        
        border-radius: 32px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .result-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        height: auto;
    }

    .result-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .result-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* Result Blocks List Styles - Mobile */
@media (max-width: 767px) {
    .result-blocks-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        order: 2;
    }

    .result-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 8px;
        width: 100%;
        height: auto;
        
        border-radius: 20px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .result-block-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        height: auto;
    }

    .result-block-title {
        width: 100%;
        height: auto;
        font-family: 'Inria Serif', Georgia, 'Times New Roman', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }

    .result-block-description {
        width: 100%;
        height: auto;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
        color: color(display-p3 0.200 0.200 0.200);
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
        margin: 0;
    }
}

/* CTA Button Styles - Desktop */
.ai-assistant-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    order: 3;
}

/* CTA Button Styles - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .ai-assistant-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        order: 3;
    }
}

/* CTA Button Styles - Mobile */
@media (max-width: 767px) {
    .ai-assistant-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        order: 3;
    }
}

/* ========== EMOJI ANIMATIONS FOR AI ASSISTANT BLOCKS ========== */

@keyframes aiEmojiFloat {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(var(--move-x), var(--move-y)) scale(0.8);
    opacity: 0;
  }
}

.ai-emoji-animated {
  animation: aiEmojiFloat 3s ease-out forwards;
  transition: opacity 0.3s ease;
}

.ai-emoji-animated.frozen {
  animation: none !important;
  transform: none !important;
}

.ai-emoji-animated.frozen {
  animation: aiEmojiPulse 2s ease-in-out infinite;
}

@keyframes aiEmojiPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
