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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-lighter);
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    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,
.nav-links a.active::after {
    width: 100%;
}

.hero-funnel {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.emphasis-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

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

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

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
    background-color: #95a5a6;
}

.image-block img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.insight-reveal {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.testimonials-inline {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.benefit-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
}

.benefit-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #7f8c8d;
}

.benefit-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.benefit-item p {
    padding: 0 1.5rem 1.5rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.services-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
}

.price-tag {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-link {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cta-link:hover {
    background-color: #d35400;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group.focused label {
    color: var(--secondary-color);
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.submit-button:hover {
    background-color: #d35400;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.trust-footer {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.trust-points {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-lighter);
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: var(--text-lighter);
    color: var(--bg-white);
}

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

.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
}

.page-hero-content h1 {
    color: var(--bg-white);
    font-size: 3rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.about-story {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-process {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.about-values {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.about-team {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.about-commitment {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.services-intro {
    padding: 5rem 2rem 2rem;
    background-color: var(--bg-white);
}

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

.service-full {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-full.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-image-large {
    flex: 1;
    background-color: #95a5a6;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 400px;
}

.service-details {
    flex: 1;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.service-features ul {
    margin-bottom: 2rem;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.price-option {
    padding: 1.2rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-full.reverse .price-option {
    background-color: var(--bg-white);
}

.price-option h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.contact-info {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.contact-block {
    flex: 1;
}

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

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

.note-text {
    font-size: 0.9rem;
    color: var(--text-lighter);
    font-style: italic;
}

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

.location-details {
    max-width: 1000px;
    margin: 2rem auto 0;
}

.contact-faq {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #d35400;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.next-steps {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--text-lighter);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-page h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: #d35400;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    background-color: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cookie-table td {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .split-content,
    .service-full {
        flex-direction: column;
        gap: 2rem;
    }

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

    .benefits-grid,
    .services-cards,
    .testimonials-inline {
        flex-direction: column;
    }

    .benefit-item,
    .service-card,
    .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content,
    .contact-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .trust-points,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .price-option {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }
}