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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --text-dark: #2C1810;
    --text-light: #F5F5DC;
    --bg-light: #FFF8F0;
    --bg-cream: #FFFAF0;
    --border-color: #E8D5C4;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 24, 16, 0.95);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background-color: #FFE55C;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.ad-label {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 5px 12px;
    background-color: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #ddd;
}

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

.nav-links a {
    font-size: 17px;
    color: var(--text-dark);
    position: relative;
}

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    background-color: var(--primary-color);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.6;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

section {
    padding: 90px 40px;
}

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

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

.centered-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.story-intro {
    background-color: var(--bg-cream);
    padding: 100px 40px;
}

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
}

.problem-reveal {
    background-color: white;
}

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

.text-side {
    flex: 1;
}

.image-side {
    flex: 1;
}

.image-side img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-cream);
}

.text-side h3 {
    font-size: 34px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.text-side p {
    font-size: 18px;
    margin-bottom: 22px;
}

.insight-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.insight-section h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 24px;
}

.visual-story {
    background-color: var(--bg-light);
}

.image-grid {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.grid-item {
    flex: 1;
}

.grid-item img {
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-cream);
}

.trust-building {
    background-color: white;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background-color: var(--bg-cream);
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
}

.testimonial .author {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: bold;
}

.process-reveal {
    background-color: var(--bg-light);
}

.alternating-blocks {
    max-width: 1000px;
    margin: 0 auto;
}

.block-left h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.block-left p {
    font-size: 19px;
    margin-bottom: 40px;
}

.block-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step p {
    font-size: 17px;
}

.benefits-grid {
    background-color: white;
}

.benefits-grid h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    padding: 35px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 17px;
}

.cta-inline {
    background-color: var(--secondary-color);
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #FFE55C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

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

.services-presentation {
    background-color: var(--bg-cream);
}

.services-presentation h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 45px;
    align-items: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-item img {
    width: 350px;
    height: 250px;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: var(--bg-cream);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
}

.price {
    font-size: 26px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select:active {
    transform: scale(0.98);
}

.order-form-section {
    background-color: white;
    padding: 100px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--bg-cream);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border: 2px solid var(--border-color);
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 17px;
}

.selected-service-display span {
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:active {
    transform: scale(0.98);
}

.final-assurance {
    background-color: var(--bg-light);
}

.final-assurance h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.final-assurance p {
    font-size: 18px;
    margin-bottom: 20px;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--accent-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.disclaimer {
    font-size: 13px;
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 40px;
    text-align: center;
    color: white;
}

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

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

.origin-story,
.values-section,
.team-section,
.philosophy-section {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.milestone-section {
    margin: 60px 0;
    display: flex;
    gap: 50px;
    align-items: center;
}

.milestone-section img {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-cream);
}

.milestone-text {
    flex: 1;
}

.milestone-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.milestone-text p {
    font-size: 18px;
    margin-bottom: 18px;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 17px;
}

.team-section,
.philosophy-section {
    margin-top: 80px;
}

.team-section h2,
.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-section p,
.philosophy-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.team-section img {
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-cream);
}

.commitment-section {
    background-color: var(--bg-cream);
    text-align: center;
}

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.commitment-section p {
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto 35px;
}

.services-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.services-detailed {
    background-color: white;
}

.service-full {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-cream);
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    margin-bottom: 25px;
}

.service-details h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-details ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.contact-info-section {
    background-color: var(--bg-light);
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 17px;
}

.contact-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.contact-card ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-section {
    background-color: white;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
}

.cta-contact {
    background-color: var(--secondary-color);
    text-align: center;
    color: white;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-contact p {
    font-size: 19px;
    margin-bottom: 30px;
}

.thanks-hero {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.thanks-content p {
    font-size: 20px;
}

.confirmation-details {
    background-color: var(--bg-light);
}

.confirmation-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.confirmation-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

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

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

.step-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 17px;
}

.order-reference {
    background-color: var(--bg-cream);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.order-reference p {
    font-size: 18px;
    margin-bottom: 12px;
}

.order-reference span {
    color: var(--secondary-color);
    font-weight: bold;
}

.order-reference .note {
    font-size: 15px;
    color: #666;
    margin-top: 20px;
}

.additional-info {
    max-width: 900px;
    margin: 50px auto 0;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.additional-info ul {
    padding-left: 25px;
}

.additional-info ul li {
    font-size: 17px;
    margin-bottom: 12px;
}

.next-steps {
    background-color: white;
    text-align: center;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.next-steps p {
    font-size: 18px;
    margin-bottom: 35px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    background-color: white;
    padding: 80px 40px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 30px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    color: var(--primary-color);
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-cream);
    font-weight: bold;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .split-layout,
    .milestone-section,
    .service-full {
        flex-direction: column;
    }

    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .milestone-section img {
        width: 100%;
    }

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

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    section {
        padding: 60px 20px;
    }

    .story-intro h2,
    .text-side h3,
    .insight-section h3 {
        font-size: 28px;
    }

    .benefits-cards {
        flex-direction: column;
    }

    .form-container {
        padding: 30px 20px;
    }

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

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

    .cookie-content p {
        min-width: 100%;
    }
}

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

    .brand {
        font-size: 24px;
    }

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

    .confirmation-box {
        padding: 30px 20px;
    }
}