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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 33px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 650px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92), rgba(52, 73, 94, 0.88));
    padding: 50px 60px;
    border-left: 6px solid var(--secondary-color);
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.5;
}

.story-intro {
    padding: 90px 60px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 780px;
    margin: 0 auto;
}

.story-lead {
    font-size: 26px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 400;
}

.story-container p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-block {
    padding: 0;
    background-color: var(--bg-light);
}

.insight-wrapper {
    display: flex;
    align-items: stretch;
}

.insight-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.insight-content {
    flex: 1;
    padding: 80px 70px;
    background-color: var(--bg-white);
}

.insight-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.reference {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.reference:hover {
    color: var(--secondary-color);
}

.problem-reveal {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.problem-container h2 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.problem-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 35px;
    border-top: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.solution-visual {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

.solution-overlay {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    max-width: 550px;
    background: rgba(255, 255, 255, 0.96);
    padding: 45px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.solution-overlay h2 {
    font-size: 34px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-overlay p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-showcase {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
}

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

.service-info {
    flex: 1;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-select {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.service-select:hover {
    background-color: #c0392b;
    transform: translateX(5px);
}

.trust-signals {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.trust-container h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 35px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #d5f4e6;
    border-left: 4px solid var(--success-color);
    padding: 20px 25px;
    margin-bottom: 35px;
}

.selected-service-display p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.selected-service-display p:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-submit {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.form-submit:hover {
    background-color: #c0392b;
}

.form-submit:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}

.disclaimer {
    padding: 60px 60px;
    background-color: #fef9e7;
    border-top: 3px solid #f39c12;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.site-footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-references a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 100px 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.about-principles {
    max-width: 1400px;
    margin: 0 auto 90px;
}

.about-principles h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.principle-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 35px;
}

.principle-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.principle-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-approach {
    max-width: 900px;
    margin: 0 auto 90px;
}

.about-approach h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-approach p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-commitment {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.commitment-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.commitment-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 40px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-detail-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.service-detail-cta:hover {
    background-color: #c0392b;
    transform: translateX(5px);
}

.contact-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

.contact-map {
    flex: 1;
    background-color: var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.contact-additional {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-faq {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px 35px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px 40px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.thanks-button {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.thanks-button.primary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.thanks-button.primary:hover {
    background-color: #c0392b;
}

.thanks-button.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.thanks-button.secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.thanks-contact {
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-page {
    padding: 60px 60px 80px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .nav-floating {
        padding: 15px 30px;
    }

    .hero-overlay {
        left: 30px;
        bottom: 40px;
        padding: 40px 45px;
        max-width: 550px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .insight-wrapper,
    .about-story,
    .about-commitment,
    .service-detail,
    .contact-container {
        flex-direction: column;
    }

    .problem-grid,
    .testimonials,
    .principles-grid {
        flex-direction: column;
    }

    .services-layout .service-card {
        flex-direction: column;
    }

    .services-layout .service-card:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .story-lead {
        font-size: 20px;
    }

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

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

    .thanks-button {
        width: 100%;
    }
}