* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-visual {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.story-intro {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.opening-statement {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 500;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.problem-amplification {
    padding: 100px 20px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-reveal {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.insight-item a {
    color: #3498db;
    text-decoration: none;
}

.insight-item a:hover {
    text-decoration: underline;
}

.testimonial-flow {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 40px;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #bdc3c7;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #495057;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.image-break {
    height: 600px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.programs-reveal {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.programs-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.programs-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.program-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.program-card.featured {
    border: 3px solid #667eea;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #667eea;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.program-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.program-card h3 {
    font-size: 26px;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.program-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 15px 25px;
    color: #495057;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px;
}

.btn-select {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 30px 25px;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #495057;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-elements {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.references-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.references-container {
    max-width: 900px;
    margin: 0 auto;
}

.references-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-copy {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-email {
    font-size: 14px;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    padding: 100px 20px 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.header-subtitle {
    font-size: 20px;
    color: #495057;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.mission-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.mission-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-list {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-top: 25px;
    padding-left: 25px;
}

.mission-list li {
    margin-bottom: 12px;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.approach-content img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.commitment-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.services-intro {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.badge-inline {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-duration {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.additional-services {
    padding: 80px 20px;
    background-color: #ffffff;
}

.additional-services h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.addon-list {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.addon-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.addon-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.addon-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.faq-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #495057;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.no-link-email {
    color: #495057;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.additional-info {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.map-section {
    padding: 0;
    background-color: #ecf0f1;
}

.map-placeholder {
    height: 400px;
    background-color: #d5dbdb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 18px;
}

.legal-page {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #495057;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 22px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.selected-info {
    margin: 30px auto;
    max-width: 600px;
}

.selected-program {
    font-size: 20px;
    background-color: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 8px;
}

.next-steps {
    font-size: 18px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #667eea;
}

.what-next {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.what-next h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-list {
    margin-top: 40px;
}

.step-item {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

    .approach-content {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .programs-grid {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .thanks-content h1 {
        font-size: 38px;
    }
}