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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e44ad;
    --accent-color: #c0935e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #fff;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: #fff;
}

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

.cookie-btn.reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-immersive {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.hero-overlay {
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-primary {
    background: var(--accent-color);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    background: #a67b4a;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.story-intro {
    padding: 6rem 2rem;
    background: #fff;
}

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

.story-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    margin: 2rem 0;
}

.problem-amplification {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-bottom: 1.5rem;
}

.split-text p {
    margin-bottom: 1.2rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.visual-story {
    padding: 6rem 2rem;
    background: #fff;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.story-card-content {
    padding: 1.5rem;
}

.story-card-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.cta-inline-block {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-content-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-secondary {
    background: #fff;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: #fff;
}

.collection-preview {
    padding: 6rem 2rem;
    background: #fff;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title-alt {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

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

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.service-select {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 0.9rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--secondary-color);
}

.urgency-block {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
}

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    background: var(--accent-color);
    color: #fff;
    padding: 1.1rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--secondary-color);
}

.final-trust {
    padding: 5rem 2rem;
    background: #fff;
}

.trust-elements {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
}

.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story,
.mission-section,
.team-intro,
.values-section {
    padding: 5rem 2rem;
}

.about-story {
    background: #fff;
}

.mission-section {
    background: var(--bg-light);
}

.mission-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-intro {
    background: #fff;
}

.values-section {
    background: var(--bg-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #fff;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.cta-box h3 {
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 5rem 2rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-full-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-specs,
.service-use-case {
    margin-bottom: 2rem;
}

.service-specs h4,
.service-use-case h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-specs ul {
    list-style: none;
    padding-left: 0;
}

.service-specs li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-specs li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-select-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 1.1rem;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background: var(--secondary-color);
}

.order-cta-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-content {
    padding: 5rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1.2;
}

.contact-details {
    margin: 2rem 0 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-faq {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.8rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-box h3 {
    margin-bottom: 0.8rem;
}

.contact-cta-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 100px;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 2rem;
    background: #fff;
}

.timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.thanks-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-info-box ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info-box li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
}

.thanks-info-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.selected-service-box {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.thanks-ritual-guide {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.ritual-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.ritual-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.ritual-step {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.ritual-step h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ritual-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
}

.thanks-cta {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-content {
    padding: 5rem 2rem;
    background: #fff;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .service-card {
        min-width: 100%;
    }

    .trust-elements {
        flex-direction: column;
    }

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

    .ritual-steps {
        flex-direction: column;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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