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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 6px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.hero-story {
    margin-top: 110px;
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
    color: #ffffff;
    padding: 0 30px;
}

.hero-text-block h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 26px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-intro {
    font-size: 21px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.story-hook {
    padding: 110px 5% 90px;
    background: #fafbfc;
}

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

.story-hook h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1a252f;
}

.story-hook p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.insight-reveal {
    padding: 95px 5%;
    background: #ffffff;
}

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

.insight-image {
    flex: 1;
    background: #ecf0f1;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-text {
    flex: 1;
    padding: 20px 0;
}

.insight-text h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a252f;
    line-height: 1.25;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-amplification {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.centered-problem {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-problem h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.3;
}

.problems-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.problem-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    padding: 45px 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-number {
    font-size: 48px;
    font-weight: 800;
    opacity: 0.5;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.92;
}

.solution-intro {
    padding: 95px 5%;
    background: #f8f9fa;
}

.solution-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a252f;
}

.solution-intro p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #34495e;
}

.benefits-cascade {
    padding: 0;
    background: #ffffff;
}

.benefit-block {
    display: flex;
    align-items: stretch;
}

.benefit-block.left-aligned {
    flex-direction: row;
}

.benefit-block.right-aligned {
    flex-direction: row-reverse;
}

.benefit-block img {
    width: 50%;
    height: 550px;
    object-fit: cover;
    background: #ecf0f1;
}

.benefit-content {
    width: 50%;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.benefit-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a252f;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.trust-building {
    padding: 100px 5%;
    background: #fafbfc;
}

.centered-trust {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-trust h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonials-flow {
    display: flex;
    gap: 35px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.pricing-reveal {
    padding: 100px 5%;
    background: #ffffff;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-top: 16px;
    margin-bottom: 50px;
}

.pricing-reveal h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1a252f;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 310px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.price-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a252f;
}

.price-desc {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.5;
}

.price-value {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: #2c3e50;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
}

.price-features li:last-child {
    border-bottom: none;
}

.cta-select {
    width: 100%;
    padding: 16px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-select:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.form-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 55px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a252f;
}

.form-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 38px;
    line-height: 1.6;
}

.form-row {
    margin-bottom: 26px;
}

.form-row label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-row textarea {
    resize: vertical;
}

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

.submit-btn:hover {
    background: #229954;
    transform: scale(1.01);
}

.disclaimer-section {
    padding: 60px 5%;
    background: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 70px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 5%;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background: #6c7a7b;
}

.page-hero {
    margin-top: 110px;
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.page-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 30px;
}

.page-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-story {
    padding: 90px 5%;
    background: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a252f;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.values-section {
    padding: 90px 5%;
    background: #f8f9fa;
}

.centered-values {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-values h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.team-approach {
    padding: 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    align-items: stretch;
}

.approach-text {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a252f;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 30px;
    color: #34495e;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list strong {
    color: #2c3e50;
}

.approach-image {
    flex: 1;
    background: #ecf0f1;
}

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

.mission-statement {
    padding: 90px 5%;
    background: #f8f9fa;
}

.mission-statement h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a252f;
}

.mission-statement p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.page-hero-simple {
    margin-top: 110px;
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.hero-simple-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-simple-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.services-full {
    padding: 80px 5%;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a252f;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.popular-label {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.75;
    color: #495057;
    margin-bottom: 28px;
}

.service-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #2c3e50;
}

.service-includes {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    padding: 10px 0 10px 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-cta {
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.service-guarantee {
    padding: 70px 5%;
    background: #f8f9fa;
}

.service-guarantee h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a252f;
}

.service-guarantee p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.contact-page {
    margin-top: 110px;
    padding: 90px 5%;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-block h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    background: #ecf0f1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-faq {
    padding: 80px 5%;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a252f;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-page {
    margin-top: 110px;
    padding: 100px 5%;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #495057;
}

.thanks-next-steps h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps-list {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 20px;
}

.next-steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.thanks-contact p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 8px;
}

.legal-page {
    margin-top: 110px;
    padding: 80px 5%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #34495e;
}

.legal-section h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #495057;
}

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

.legal-section ul,
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

.cookie-table {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .split-insight,
    .benefit-block,
    .split-content,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .benefit-block img,
    .benefit-content {
        width: 100%;
    }

    .problems-grid,
    .testimonials-flow,
    .pricing-grid,
    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}