* {
    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.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.story-opener {
    padding: 120px 20px;
    background-color: #fafafa;
}

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

.opening-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.image-break {
    width: 100%;
    height: 600px;
    background-color: #2a2a2a;
}

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

.insight-block {
    padding: 140px 20px;
    background-color: #ffffff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-highlight {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a1a1a;
    margin-top: 30px;
}

.insight-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.testimonial-inline {
    padding: 100px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #cccccc;
    font-style: normal;
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

.grid-item.large {
    width: 60%;
    height: 700px;
}

.grid-item.medium {
    width: 40%;
    height: 700px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.grid-caption h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.grid-caption p {
    font-size: 16px;
    line-height: 1.5;
}

.problem-section {
    padding: 120px 20px;
    background-color: #f5f5f5;
}

.problem-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.problem-item {
    padding: 35px;
    background-color: #ffffff;
    border-left: 5px solid #d32f2f;
}

.problem-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.solution-reveal {
    padding: 120px 20px;
    background-color: #ffffff;
}

.content-flex {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.solution-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.solution-content {
    flex: 1;
    padding: 40px 0;
}

.solution-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.layer-explanation {
    margin-bottom: 35px;
}

.layer-explanation h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.layer-explanation p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-inline {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #333333;
}

.trust-builder {
    padding: 120px 20px;
    background-color: #fafafa;
}

.trust-builder h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    justify-content: space-between;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
}

.collections-preview {
    padding: 140px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}

.collection-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.collection-card {
    width: calc(50% - 20px);
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 16px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #333333;
}

.form-section {
    padding: 120px 20px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 140px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 20px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    z-index: 10000;
    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 {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

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

.page-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #2a2a2a;
    margin-top: 100px;
}

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

.page-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 120px 20px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.timeline-visual {
    padding: 100px 20px;
    background-color: #fafafa;
}

.timeline-item {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    min-width: 150px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.philosophy-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.philosophy-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.philosophy-image {
    background-color: #e8e8e8;
}

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

.team-approach {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.team-approach h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-approach p {
    font-size: 18px;
    margin-bottom: 30px;
}

.process-list {
    margin-top: 40px;
    padding-left: 30px;
}

.process-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.values-block {
    padding: 120px 20px;
    background-color: #ffffff;
    text-align: center;
}

.values-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #fafafa;
    text-align: left;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.service-detail {
    padding: 100px 20px;
    background-color: #ffffff;
}

.service-detail.alternate {
    background-color: #fafafa;
}

.service-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
    padding: 40px 0;
}

.service-info h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-tagline {
    font-size: 20px;
    font-style: italic;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.service-features ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-features p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0;
}

.cta-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.contact-content {
    padding: 100px 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;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-additional {
    padding: 100px 20px;
    background-color: #fafafa;
}

.contact-additional h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

#serviceConfirmation {
    font-weight: 700;
    color: #1a1a1a;
}

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

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

.btn-primary {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

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

.legal-page h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

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

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.retention-table,
.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.retention-table th,
.retention-table td,
.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.retention-table th,
.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 48px;
    }

    .content-wrapper,
    .content-flex,
    .service-layout {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .collection-card {
        width: 100%;
    }

    .grid-item.large,
    .grid-item.medium {
        width: 100%;
        height: 500px;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-content {
        padding: 50px 30px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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