/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color variables with unique naming */
:root {
    --ocean-blue: #f4a261;
    --forest-green: #fdf5ef;
    --sunset-orange: #d67d33;
    --secondary-color: #2a9d8f;
    --secondary-light: #e6f7f5;
    --tertiary-color: #e76f51;
    --tertiary-light: #fef1ef;
    --accent-color: #264653;
    --accent-light: #f0f2f1;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-color: #d67d33;
    --background-color: #fdf5ef;
}

/* Typography */
body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--sunset-orange);
    margin-bottom: 21px;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

/* Utility classes */
.content-boundary {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation */
.navigation-workspace {
    background: rgba(253, 245, 239, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 21px rgba(212, 125, 51, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand-identity img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--sunset-orange);
    position: relative;
    transition: all 0.35s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--sunset-orange);
    transition: all 0.35s ease;
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    background: var(--ocean-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero section */
.hero-workspace {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--forest-green) 0%, rgba(244, 162, 97, 0.08) 100%);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
    align-items: center;
}

.primary-headline {
    font-size: 3.8rem;
    margin-bottom: 27px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 34px;
    color: var(--sunset-orange);
    opacity: 0.9;
}

.hero-action-zone {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-action-button, .secondary-action-button {
    padding: 16px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.primary-action-button {
    background: var(--ocean-blue);
    color: #fff;
    box-shadow: 0 8px 21px rgba(244, 162, 97, 0.3);
}

.primary-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(244, 162, 97, 0.4);
}

.secondary-action-button {
    background: transparent;
    color: var(--sunset-orange);
    border: 2px solid var(--ocean-blue);
}

.secondary-action-button:hover {
    background: var(--ocean-blue);
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual-zone img {
    width: 100%;
    height: auto;
    border-radius: 34px;
    box-shadow: 0 21px 55px rgba(212, 125, 51, 0.15);
}

/* Assessment section */
.assessment-workspace {
    padding: 89px 0;
    background: #fff;
}

.section-header-zone {
    text-align: center;
    margin-bottom: 68px;
}

.section-headline {
    margin-bottom: 18px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--sunset-orange);
    opacity: 0.8;
    max-width: 640px;
    margin: 0 auto;
}

.assessment-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.assessment-feature-block {
    background: var(--forest-green);
    padding: 38px 27px;
    border-radius: 27px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(244, 162, 97, 0.1);
}

.assessment-feature-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(244, 162, 97, 0.12);
}

.feature-visual-container {
    margin-bottom: 24px;
}

.feature-visual-container img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 21px;
}

.feature-title {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.feature-description {
    color: var(--sunset-orange);
    opacity: 0.85;
    line-height: 1.6;
}

/* Decision Lab section */
.decision-lab-workspace {
    padding: 89px 0;
    background: linear-gradient(45deg, var(--forest-green) 0%, #fff 100%);
}

.lab-content-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 68px;
    align-items: center;
}

.lab-features-list {
    margin-top: 34px;
}

.lab-feature-item {
    margin-bottom: 27px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    border-left: 4px solid var(--ocean-blue);
}

.feature-subtitle {
    margin-bottom: 8px;
    color: var(--sunset-orange);
}

.feature-text {
    color: var(--sunset-orange);
    opacity: 0.8;
    margin: 0;
}

.lab-visual-section img {
    width: 100%;
    height: auto;
    border-radius: 27px;
    box-shadow: 0 16px 42px rgba(212, 125, 51, 0.15);
}

/* CTA section */
.cta-workspace {
    padding: 68px 0;
    background: var(--ocean-blue);
    text-align: center;
}

.cta-content-center {
    max-width: 780px;
    margin: 0 auto;
}

.cta-headline {
    color: #fff;
    margin-bottom: 21px;
    font-size: 2.6rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 34px;
}

.cta-action-button {
    background: #fff;
    color: var(--ocean-blue);
    padding: 18px 42px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.15);
}

.cta-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.2);
}

/* Programs section */
.programs-workspace {
    padding: 89px 0;
    background: #fff;
}

.programs-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.program-card-block {
    background: var(--forest-green);
    border-radius: 24px;
    padding: 34px 27px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}

.program-card-block:hover {
    transform: translateY(-5px);
    border-color: var(--ocean-blue);
    box-shadow: 0 16px 42px rgba(244, 162, 97, 0.15);
}

.program-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--ocean-blue);
}

.program-title {
    margin-bottom: 8px;
    color: var(--sunset-orange);
}

.program-duration {
    color: var(--ocean-blue);
    font-weight: 600;
    margin: 0;
}

.program-description {
    margin-bottom: 21px;
    color: var(--sunset-orange);
    opacity: 0.85;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: 8px 0;
    color: var(--sunset-orange);
    position: relative;
    padding-left: 21px;
}

.program-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-weight: bold;
}

/* Contact section */
.contact-workspace {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, #fff 100%);
}

.contact-content-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 68px;
}

.contact-details {
    margin-top: 34px;
}

.contact-item {
    margin-bottom: 24px;
    padding: 18px 21px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border-left: 4px solid var(--ocean-blue);
}

.contact-label {
    margin-bottom: 5px;
    color: var(--sunset-orange);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    margin: 0;
    color: var(--sunset-orange);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Form styles */
.contact-form {
    background: #fff;
    padding: 42px 34px;
    border-radius: 27px;
    box-shadow: 0 13px 42px rgba(212, 125, 51, 0.1);
}

.form-group {
    margin-bottom: 27px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--sunset-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 21px;
    border: 2px solid var(--neutral-light);
    border-radius: 21px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--forest-green);
    color: var(--sunset-orange);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    width: 100%;
    padding: 18px 34px;
    background: var(--ocean-blue);
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(244, 162, 97, 0.3);
}

/* Footer */
.footer-workspace {
    background: var(--accent-color);
    color: #fff;
    padding: 68px 0 27px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 42px;
    margin-bottom: 42px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.1rem;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-contact-item {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 27px;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.35s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 27px;
        font-size: 1.2rem;
        color: var(--sunset-orange);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive design */
@media screen and (max-width: 1280px) {
    .content-boundary {
        padding: 0 34px;
    }
}

@media screen and (max-width: 890px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .primary-headline {
        font-size: 2.8rem;
    }

    .lab-content-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-content-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .hero-action-zone {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .primary-headline {
        font-size: 2.2rem;
    }

    .section-headline {
        font-size: 1.9rem;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .assessment-content-grid {
        grid-template-columns: 1fr;
    }

    .programs-content-grid {
        grid-template-columns: 1fr;
    }

    .footer-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-workspace {
        padding: 120px 0 68px;
    }

    .assessment-workspace,
    .decision-lab-workspace,
    .programs-workspace,
    .contact-workspace {
        padding: 68px 0;
    }

    .form-input, .form-select, .form-textarea {
        padding: 13px 18px;
    }
}

/* About Page Styles */
.about-hero-workspace {
    padding: 140px 0 68px;
    background: linear-gradient(135deg, var(--forest-green) 0%, rgba(244, 162, 97, 0.05) 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 890px;
    margin: 0 auto;
}

.research-workspace {
    padding: 89px 0;
    background: #fff;
}

.research-content-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.research-visual-section img {
    width: 100%;
    height: auto;
    border-radius: 27px;
    box-shadow: 0 16px 42px rgba(212, 125, 51, 0.12);
}

.research-highlights {
    display: flex;
    gap: 34px;
    margin-top: 34px;
}

.research-stat {
    text-align: center;
    padding: 21px 18px;
    background: var(--forest-green);
    border-radius: 18px;
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    color: var(--ocean-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-label {
    margin: 0;
    color: var(--sunset-orange);
    font-size: 0.95rem;
    opacity: 0.8;
}

.philosophy-workspace {
    padding: 89px 0;
    background: linear-gradient(45deg, var(--forest-green) 0%, #fff 100%);
}

.philosophy-content-center {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
    margin-top: 55px;
}

.pillar-block {
    background: rgba(255, 255, 255, 0.8);
    padding: 34px 27px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(244, 162, 97, 0.1);
}

.pillar-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(244, 162, 97, 0.15);
}

.pillar-visual {
    margin-bottom: 24px;
}

.pillar-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.pillar-title {
    margin-bottom: 16px;
    color: var(--sunset-orange);
}

.pillar-description {
    color: var(--sunset-orange);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

.success-stories-workspace {
    padding: 89px 0;
    background: #fff;
}

.stories-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.story-card {
    background: var(--forest-green);
    border-radius: 21px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--ocean-blue);
    box-shadow: 0 16px 42px rgba(244, 162, 97, 0.15);
}

.story-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 27px 24px;
}

.story-title {
    margin-bottom: 16px;
    color: var(--sunset-orange);
    font-size: 1.25rem;
}

.story-description {
    margin-bottom: 18px;
    color: var(--sunset-orange);
    opacity: 0.85;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.metric {
    background: var(--ocean-blue);
    color: #fff;
    padding: 5px 13px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.decision-science-workspace {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, #fff 100%);
}

.science-content-layout {
    max-width: 890px;
    margin: 0 auto;
}

.science-areas {
    margin-top: 34px;
}

.science-area {
    margin-bottom: 27px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    border-left: 4px solid var(--ocean-blue);
}

.area-title {
    margin-bottom: 12px;
    color: var(--sunset-orange);
    font-size: 1.15rem;
}

.area-text {
    margin: 0;
    color: var(--sunset-orange);
    opacity: 0.8;
    line-height: 1.6;
}

.leadership-intuition-workspace {
    padding: 89px 0;
    background: #fff;
}

.leadership-grid {
    max-width: 890px;
    margin: 0 auto;
}

.leadership-benefits {
    margin-top: 34px;
}

.benefit-item {
    margin-bottom: 24px;
    padding: 21px;
    background: var(--forest-green);
    border-radius: 16px;
    border-left: 4px solid var(--ocean-blue);
}

.benefit-title {
    margin-bottom: 8px;
    color: var(--sunset-orange);
}

.benefit-text {
    margin: 0;
    color: var(--sunset-orange);
    opacity: 0.8;
    line-height: 1.6;
}

.resources-workspace {
    padding: 89px 0;
    background: linear-gradient(45deg, var(--forest-green) 0%, #fff 100%);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.resource-category {
    background: rgba(255, 255, 255, 0.8);
    padding: 34px 27px;
    border-radius: 21px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(244, 162, 97, 0.1);
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 42px rgba(244, 162, 97, 0.15);
}

.category-title {
    margin-bottom: 18px;
    color: var(--sunset-orange);
    font-size: 1.3rem;
}

.category-description {
    color: var(--sunset-orange);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* Thank You Page Styles */
.thankyou-hero-workspace {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--forest-green) 0%, rgba(244, 162, 97, 0.08) 100%);
    text-align: center;
}

.thankyou-content-center {
    max-width: 780px;
    margin: 0 auto;
}

.success-indicator {
    margin-bottom: 34px;
}

.checkmark-circle {
    width: 89px;
    height: 89px;
    background: var(--success-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    width: 27px;
    height: 13px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: checkmarkDraw 0.4s ease-in-out 0.3s both;
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 27px;
        height: 13px;
    }
}

.thankyou-headline {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--sunset-orange);
}

.thankyou-description {
    font-size: 1.15rem;
    margin-bottom: 55px;
    color: var(--sunset-orange);
    opacity: 0.9;
    line-height: 1.7;
}

.next-steps-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 42px 34px;
    border-radius: 24px;
    margin-bottom: 42px;
    text-align: left;
}

.steps-title {
    text-align: center;
    margin-bottom: 34px;
    color: var(--sunset-orange);
    font-size: 1.8rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.step-item {
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.step-number {
    width: 42px;
    height: 42px;
    background: var(--ocean-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    margin-bottom: 8px;
    color: var(--sunset-orange);
    font-size: 1.15rem;
}

.step-description {
    margin: 0;
    color: var(--sunset-orange);
    opacity: 0.8;
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info-workspace {
    padding: 68px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.info-block {
    background: var(--forest-green);
    padding: 34px 27px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(244, 162, 97, 0.1);
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 42px rgba(244, 162, 97, 0.15);
}

.info-visual {
    margin-bottom: 24px;
}

.info-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
}

.info-title {
    margin-bottom: 16px;
    color: var(--sunset-orange);
    font-size: 1.25rem;
}

.info-description {
    color: var(--sunset-orange);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for new pages */
@media screen and (max-width: 890px) {
    .research-content-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .research-highlights {
        flex-direction: column;
        gap: 21px;
    }

    .research-stat {
        max-width: 200px;
        margin: 0 auto;
    }

    .philosophy-pillars {
        grid-template-columns: 1fr;
    }

    .stories-content-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .steps-list {
        gap: 21px;
    }

    .step-item {
        gap: 16px;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .thankyou-headline {
        font-size: 2.2rem;
    }

    .next-steps-info {
        padding: 27px 21px;
    }

    .checkmark-circle {
        width: 68px;
        height: 68px;
    }

    .checkmark {
        width: 21px;
        height: 11px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}