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

body {
    font-family: 'Georgia', serif;
    color: #2c2c2c;
    line-height: 1.7;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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: 1.5rem;
}

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

.cookie-content a {
    color: #d4c4b0;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #7a6344;
}

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-mark {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #2c2c2c;
}

.nav-split {
    display: flex;
    gap: 2.5rem;
}

.nav-split a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-split a:hover {
    color: #8b7355;
}

.ad-label {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.main-asymmetric {
    min-height: 100vh;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #7a6344;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1.2;
    min-height: 85vh;
}

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

.intro-asymmetric {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
}

.intro-block-offset {
    max-width: 900px;
    margin: 0 0 0 10%;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.services-creative {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 2.5rem;
    margin: 0 0 4rem 8%;
    font-weight: 400;
}

.services-irregular-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    width: calc(33.333% - 2rem);
    min-width: 320px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-position-1 {
    margin-top: 0;
}

.card-position-2 {
    margin-top: 3rem;
}

.card-position-3 {
    margin-top: 1.5rem;
}

.card-position-4 {
    margin-top: 2.5rem;
}

.card-position-5 {
    margin-top: 0.5rem;
}

.card-position-6 {
    margin-top: 2rem;
}

.card-image-bg {
    width: 100%;
    height: 220px;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.4rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-select:hover {
    background-color: #8b7355;
}

.trust-section-irregular {
    padding: 6rem 2rem;
    background-color: #e8e3dd;
}

.trust-content-offset {
    max-width: 1200px;
    margin: 0 5% 0 auto;
}

.trust-content-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.trust-number {
    font-size: 3rem;
    font-weight: 300;
    color: #8b7355;
    min-width: 80px;
}

.trust-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.trust-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.form-section-creative {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 15%;
}

.form-wrapper-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid #ccc;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    background-color: #ffffff;
}

.btn-submit {
    padding: 1.2rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin-top: 1rem;
}

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

.testimonials-offset {
    padding: 6rem 2rem;
    background-color: #f5f1ed;
}

.testimonials-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 400;
}

.testimonials-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial-card:nth-child(1) {
    margin-top: 0;
}

.testimonial-card:nth-child(2) {
    margin-top: 2rem;
}

.testimonial-card:nth-child(3) {
    margin-top: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #8b7355;
    font-weight: 600;
}

.footer-creative {
    background-color: #2c2c2c;
    color: #d4c4b0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #d4c4b0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

.about-hero-offset {
    padding: 6rem 2rem 4rem 8%;
    background-color: #f5f1ed;
}

.about-text-block {
    max-width: 800px;
}

.about-text-block h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
}

.about-story-irregular {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.story-image-left {
    flex: 1;
    min-height: 70vh;
}

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

.story-content-right {
    flex: 1;
    padding: 4rem 5rem;
}

.story-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.values-section-creative {
    padding: 6rem 2rem;
    background-color: #e8e3dd;
}

.values-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.values-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-block {
    background-color: #ffffff;
    padding: 3rem;
    flex: 1;
    min-width: 280px;
}

.block-1 {
    margin-top: 0;
}

.block-2 {
    margin-top: 2.5rem;
}

.block-3 {
    margin-top: 1.2rem;
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #8b7355;
    font-weight: 500;
}

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.team-section-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 0 3rem 10%;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.team-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.team-image-container {
    width: 100%;
    height: 500px;
}

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

.process-section-irregular {
    padding: 6rem 2rem;
    background-color: #f5f1ed;
}

.process-section-irregular h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.process-steps-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.process-step {
    background-color: #ffffff;
    padding: 2.5rem;
    flex: 1;
    min-width: 280px;
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 2rem;
}

.step-offset-3 {
    margin-top: 1rem;
}

.step-offset-4 {
    margin-top: 3rem;
}

.step-marker {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.cta-section-about {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
    text-align: center;
}

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

.cta-content-offset h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content-offset p {
    font-size: 1.2rem;
    color: #d4c4b0;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #7a6344;
}

.services-page-hero {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
    text-align: center;
}

.page-title-offset {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #555;
}

.services-detailed-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.card-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 450px;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    background-color: #f5f1ed;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    color: #8b7355;
    font-weight: 600;
}

.btn-service-select {
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-service-select:hover {
    background-color: #8b7355;
}

.pricing-note-section {
    padding: 4rem 2rem;
    background-color: #e8e3dd;
}

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

.pricing-note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.pricing-note-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.cta-services-bottom {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-link-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-link-large:hover {
    background-color: #7a6344;
}

.contact-hero {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
    text-align: center;
}

.contact-title-offset {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
}

.contact-content-irregular {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.info-section {
    flex: 1;
    min-width: 280px;
}

.section-offset-1 {
    margin-top: 0;
}

.section-offset-2 {
    margin-top: 2rem;
}

.section-offset-3 {
    margin-top: 1rem;
}

.info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.info-detail {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.05rem;
    color: #2c2c2c;
    line-height: 1.6;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.day {
    font-weight: 500;
}

.time {
    color: #666;
}

.contact-map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 500px;
}

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

.contact-note-section {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
}

.note-content-offset {
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.note-content-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.note-content-offset p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-contact-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-contact-cta:hover {
    background-color: #7a6344;
}

.thanks-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f1ed;
    padding: 2rem;
}

.thanks-content-asymmetric {
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 1.05rem;
    color: #8b7355;
    font-weight: 600;
    margin-top: 1rem;
}

.next-steps-section {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: #8b7355;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    padding-top: 0.5rem;
}

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

.btn-return-home,
.btn-learn-more {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-return-home {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-return-home:hover {
    background-color: #7a6344;
}

.btn-learn-more {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.btn-learn-more:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-page-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
    color: #555;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-section a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #7a6344;
}

.legal-list {
    margin: 1rem 0 1rem 2rem;
}

.legal-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 3rem 2rem;
        max-width: 100%;
    }

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

    .about-story-irregular {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .card-layout-2 {
        flex-direction: column;
    }

    .nav-split {
        gap: 1.5rem;
    }

    .ad-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title-offset {
        font-size: 2rem;
        margin-left: 0;
        text-align: center;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .trust-item {
        flex-direction: column;
        gap: 1rem;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
    }

    .testimonial-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .footer-content-asymmetric {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-split {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    .nav-split a {
        font-size: 0.9rem;
    }

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