/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-depth: #f4a261;
    --sunrise-glow: #fdf5ef;
    --autumn-bronze: #d67d33;
    --emerald-shine: #2ecc71;
    --emerald-whisper: #e8f8f5;
    --amber-warning: #f39c12;
    --amber-mist: #fef9e7;
    --crimson-pulse: #e74c3c;
    --crimson-haze: #fdf2f2;
    --slate-stone: #7f8c8d;
    --cloud-drift: #f8f9fa;
    --midnight-text: #2c3e50;
    --pearl-white: #ffffff;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--autumn-bronze);
    font-size: 17px;
    background-color: var(--sunrise-glow);
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 21px;
}

.primary-heading {
    font-size: 3.2rem;
    color: var(--midnight-text);
    margin-bottom: 34px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--midnight-text);
    margin-bottom: 55px;
}

.section-title.centered {
    text-align: center;
}

/* Header Navigation */
.primary-navigation {
    background: var(--pearl-white);
    box-shadow: 0 3px 13px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navigation-hub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brand-identity img {
    height: 55px;
    width: auto;
}

.mobile-nav-trigger {
    display: none;
}

.burger-menu-label {
    display: none;
}

.hamburger-icon {
    width: 34px;
    height: 4px;
    background: var(--autumn-bronze);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 4px;
    background: var(--autumn-bronze);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-icon:before {
    top: -13px;
}

.hamburger-icon:after {
    top: 13px;
}

.navigation-list {
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav-anchor {
    color: var(--autumn-bronze);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.28s ease;
    position: relative;
}

.nav-anchor:hover {
    color: var(--ocean-depth);
}

.nav-anchor::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--ocean-depth);
    transition: width 0.3s ease;
}

.nav-anchor:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .burger-menu-label {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
    }

    .navigation-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav-element {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .nav-anchor {
        display: inline-block;
        padding: 13px 21px;
        font-size: 21px;
        color: var(--autumn-bronze);
    }

    .mobile-nav-trigger:checked ~ .nav-container {
        left: 0;
    }

    .mobile-nav-trigger:checked ~ .burger-menu-label .hamburger-icon {
        background: transparent;
    }

    .mobile-nav-trigger:checked ~ .burger-menu-label .hamburger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-trigger:checked ~ .burger-menu-label .hamburger-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .nav-container {
        display: block;
    }

    .navigation-list {
        display: flex;
        gap: 34px;
    }
}

/* Hero Section */
.hero-workspace {
    padding: 144px 0 89px;
    background: linear-gradient(135deg, var(--sunrise-glow) 0%, var(--cloud-drift) 100%);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-description {
    font-size: 21px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.cta-button-primary {
    display: inline-block;
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 21px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 21px rgba(244, 162, 97, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(244, 162, 97, 0.4);
    background: var(--autumn-bronze);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.15);
}

/* Assessment Section */
.assessment-workspace {
    padding: 89px 0;
    background: var(--pearl-white);
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.assessment-card {
    background: var(--sunrise-glow);
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.assessment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0,0,0,0.12);
    border-color: var(--ocean-depth);
}

.card-visual {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 21px;
    margin-bottom: 21px;
}

.card-heading {
    font-size: 1.5rem;
    color: var(--midnight-text);
    margin-bottom: 13px;
}

.card-text {
    color: var(--slate-stone);
    line-height: 1.7;
}

/* Workshop Section */
.workshop-zone {
    padding: 89px 0;
    background: var(--cloud-drift);
}

.workshop-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.workshop-intro {
    font-size: 19px;
    color: var(--slate-stone);
    margin-bottom: 34px;
}

.workshop-features {
    list-style: none;
}

.workshop-features li {
    padding: 13px 0;
    color: var(--autumn-bronze);
    position: relative;
    padding-left: 34px;
}

.workshop-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--ocean-depth);
    font-weight: bold;
    font-size: 21px;
}

.section-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.15);
}

/* Programs Section */
.programs-showcase {
    padding: 89px 0;
    background: var(--pearl-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.program-module {
    background: var(--sunrise-glow);
    padding: 34px;
    border-radius: 28px;
    border-left: 5px solid var(--ocean-depth);
    transition: all 0.3s ease;
}

.program-module:hover {
    transform: translateX(8px);
    box-shadow: 0 13px 34px rgba(0,0,0,0.1);
}

.module-title {
    font-size: 1.4rem;
    color: var(--midnight-text);
    margin-bottom: 13px;
}

.module-description {
    color: var(--slate-stone);
    margin-bottom: 21px;
    line-height: 1.7;
}

.module-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 8px 13px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

/* CTA Section */
.cta-workspace {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--autumn-bronze) 100%);
}

.cta-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    color: var(--pearl-white);
    font-size: 2.5rem;
    margin-bottom: 21px;
}

.cta-description {
    color: var(--sunrise-glow);
    font-size: 19px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    background: var(--pearl-white);
    color: var(--ocean-depth);
    padding: 21px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 21px rgba(255,255,255,0.2);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(255,255,255,0.3);
    background: var(--sunrise-glow);
}

/* Contact Section */
.contact-zone {
    padding: 89px 0;
    background: var(--cloud-drift);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.info-heading {
    font-size: 1.6rem;
    color: var(--midnight-text);
    margin-bottom: 21px;
}

.contact-detail {
    margin-bottom: 21px;
    color: var(--slate-stone);
    line-height: 1.7;
}

.consultation-form {
    background: var(--pearl-white);
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 13px 34px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 21px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--midnight-text);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 21px;
    border: 2px solid var(--cloud-drift);
    border-radius: 21px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--sunrise-glow);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean-depth);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 21px 34px;
    border: none;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit-button:hover {
    background: var(--autumn-bronze);
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(244, 162, 97, 0.3);
}

/* Footer */
.site-footer {
    background: var(--midnight-text);
    color: var(--cloud-drift);
    padding: 55px 0 21px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--slate-stone);
    line-height: 1.7;
}

.footer-heading {
    color: var(--pearl-white);
    font-size: 1.3rem;
    margin-bottom: 21px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: var(--slate-stone);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ocean-depth);
}

.footer-contact p {
    color: var(--slate-stone);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 21px;
    text-align: center;
    color: var(--slate-stone);
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .content-wrapper {
        padding: 0 34px;
    }
}

@media screen and (max-width: 890px) {
    .hero-content-grid,
    .workshop-content-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .primary-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 34px;
    }

    .hero-workspace {
        padding: 123px 0 55px;
    }

    .assessment-workspace,
    .workshop-zone,
    .programs-showcase,
    .cta-workspace,
    .contact-zone {
        padding: 55px 0;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .content-wrapper {
        padding: 0 21px;
    }

    .primary-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .consultation-form {
        padding: 21px;
    }

    .assessment-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DODATKOWA STYLIZACJA DLA ABOUT.HTML I THANKYOU.PHP
   Dodaj do istniejącego pliku framework/layers.css
   ============================================ */

/* About Page Styles */
.about-hero-zone {
    padding: 144px 0 89px;
    background: linear-gradient(45deg, var(--cloud-drift) 0%, var(--sunrise-glow) 100%);
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-hero-text {
    font-size: 19px;
    color: var(--slate-stone);
    line-height: 1.8;
}

.about-hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.12);
}

/* Psychology Section */
.psychology-workspace {
    padding: 89px 0;
    background: var(--pearl-white);
}

.psychology-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: start;
}

.psychology-description {
    font-size: 18px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.psychology-principles {
    display: grid;
    gap: 21px;
}

.principle-item {
    padding: 21px;
    background: var(--sunrise-glow);
    border-radius: 21px;
    border-left: 4px solid var(--ocean-depth);
}

.principle-title {
    color: var(--midnight-text);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.principle-text {
    color: var(--slate-stone);
    line-height: 1.6;
}

.psychology-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 13px 34px rgba(0,0,0,0.1);
}

/* Philosophy Section */
.philosophy-showcase {
    padding: 89px 0;
    background: var(--cloud-drift);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
    align-items: center;
}

.philosophy-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.15);
}

.philosophy-intro {
    font-size: 18px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.philosophy-pillars {
    display: grid;
    gap: 21px;
}

.pillar-element {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 21px;
    transition: transform 0.3s ease;
}

.pillar-element:hover {
    transform: translateY(-5px);
}

.pillar-heading {
    color: var(--ocean-depth);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pillar-description {
    color: var(--slate-stone);
    line-height: 1.6;
}

/* Success Stories */
.success-workspace {
    padding: 89px 0;
    background: var(--pearl-white);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 34px;
}

.story-card {
    background: var(--sunrise-glow);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 21px;
}

.story-title {
    color: var(--midnight-text);
    font-size: 1.3rem;
    margin-bottom: 13px;
}

.story-text {
    color: var(--slate-stone);
    line-height: 1.7;
    margin-bottom: 21px;
}

.story-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.metric-badge {
    background: var(--emerald-shine);
    color: var(--pearl-white);
    padding: 8px 13px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

/* Training Section */
.training-zone {
    padding: 89px 0;
    background: var(--cloud-drift);
}

.training-intro {
    font-size: 18px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.training-modules {
    display: grid;
    gap: 21px;
}

.module-block {
    background: var(--pearl-white);
    padding: 21px;
    border-radius: 21px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.module-block:hover {
    border-color: var(--ocean-depth);
}

.module-heading {
    color: var(--midnight-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.module-text {
    color: var(--slate-stone);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-showcase {
    padding: 89px 0;
    background: var(--pearl-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.leadership-aspect {
    background: var(--sunrise-glow);
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    border-top: 5px solid var(--ocean-depth);
}

.aspect-title {
    color: var(--midnight-text);
    font-size: 1.4rem;
    margin-bottom: 13px;
}

.aspect-description {
    color: var(--slate-stone);
    line-height: 1.7;
}

/* Skills Section */
.skills-workspace {
    padding: 89px 0;
    background: var(--cloud-drift);
}

.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.skills-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.15);
}

.skills-intro {
    font-size: 18px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.skills-categories {
    display: grid;
    gap: 21px;
}

.skill-category {
    padding: 21px;
    background: var(--pearl-white);
    border-radius: 21px;
    border-left: 4px solid var(--amber-warning);
}

.category-name {
    color: var(--midnight-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-details {
    color: var(--slate-stone);
    line-height: 1.6;
}

/* Resources Section */
.resources-zone {
    padding: 89px 0;
    background: var(--pearl-white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.resource-item {
    background: var(--sunrise-glow);
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-item:hover {
    border-color: var(--ocean-depth);
    transform: translateY(-5px);
}

.resource-title {
    color: var(--midnight-text);
    font-size: 1.3rem;
    margin-bottom: 13px;
}

.resource-description {
    color: var(--slate-stone);
    line-height: 1.7;
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thankyou-hero-workspace {
    padding: 144px 0 89px;
    background: linear-gradient(135deg, var(--emerald-whisper) 0%, var(--sunrise-glow) 100%);
}

.thankyou-content-center {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.thankyou-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.15);
}

.thankyou-heading {
    color: var(--midnight-text);
    font-size: 2.8rem;
    margin-bottom: 21px;
}

.thankyou-description {
    font-size: 19px;
    color: var(--slate-stone);
    margin-bottom: 34px;
    line-height: 1.8;
}

.next-steps-box {
    background: var(--pearl-white);
    padding: 34px;
    border-radius: 28px;
    margin-bottom: 34px;
    box-shadow: 0 8px 21px rgba(0,0,0,0.08);
}

.steps-title {
    color: var(--midnight-text);
    font-size: 1.5rem;
    margin-bottom: 21px;
    text-align: center;
}

.steps-list {
    display: grid;
    gap: 21px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 13px;
}

.step-number {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    color: var(--slate-stone);
    line-height: 1.6;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.button-primary-return {
    background: var(--ocean-depth);
    color: var(--pearl-white);
    padding: 21px 34px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 21px rgba(244, 162, 97, 0.3);
}

.button-primary-return:hover {
    background: var(--autumn-bronze);
    transform: translateY(-2px);
}

.button-secondary-learn {
    background: transparent;
    color: var(--ocean-depth);
    padding: 21px 34px;
    border: 2px solid var(--ocean-depth);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-secondary-learn:hover {
    background: var(--ocean-depth);
    color: var(--pearl-white);
}

/* Additional Info Section */
.additional-info-zone {
    padding: 89px 0;
    background: var(--pearl-white);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.info-card {
    background: var(--sunrise-glow);
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald-shine);
}

.card-icon-image {
    width: 89px;
    height: 89px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 21px;
    display: block;
}

.card-info-title {
    color: var(--midnight-text);
    font-size: 1.3rem;
    margin-bottom: 13px;
}

.card-info-text {
    color: var(--slate-stone);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media screen and (max-width: 890px) {
    .about-hero-layout,
    .psychology-content-grid,
    .philosophy-layout,
    .skills-layout,
    .thankyou-content-center {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .thankyou-heading {
        font-size: 2.2rem;
    }

    .action-buttons {
        justify-content: center;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .thankyou-heading {
        font-size: 1.9rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary-return,
    .button-secondary-learn {
        text-align: center;
    }

    .next-steps-box {
        padding: 21px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}