/* 
 * FINANZAUDIT WEBSITE STYLES
 * Color palette:
 * - Main background: #0D1117 (dark graphite)
 * - Accents: #E63946 (scarlet), #F1FAEE (milk white), #A8DADC (soft aquamarine)
 * - Text: #F8F9FA (almost white)
 */

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adds padding when scrolling to anchor links */
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #F8F9FA;
    background-color: #0D1117;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #F1FAEE;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #A8DADC;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #E63946;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    color: #0D1117;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(168, 218, 220, 0.5);
    color: #0D1117;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #F1FAEE;
    color: #F1FAEE;
}

.btn-secondary:hover {
    background-color: #F1FAEE;
    color: #0D1117;
    box-shadow: 0 0 10px rgba(241, 250, 238, 0.3);
}

.btn-submit {
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    color: #0D1117;
    border: none;
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
    color: #0D1117;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-nav {
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    color: #0D1117;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-nav:hover {
    color: #0D1117;
    box-shadow: 0 0 10px rgba(168, 218, 220, 0.5);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: #F1FAEE;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo svg {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: #F8F9FA;
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.btn-nav):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #E63946;
    transition: all 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: #0D1117;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #A8DADC;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: rgba(168, 218, 220, 0.05);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-text {
    width: 55%;
}

.about-image {
    width: 40%;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services-image {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: scale(1.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(248, 249, 250, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #A8DADC;
    box-shadow: 0 0 20px rgba(168, 218, 220, 0.2);
}

.service-card h3 {
    color: #F1FAEE;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 1.5rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: rgba(230, 57, 70, 0.05);
}

.benefits-image {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.benefits-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(168, 218, 220, 0.2), rgba(230, 57, 70, 0.2));
    pointer-events: none;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.benefits-image:hover img {
    transform: scale(1.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card:hover .benefit-icon {
    color: #E63946;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

.benefit-icon {
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(241, 250, 238, 0.05);
    border-radius: 50%;
    color: #A8DADC;
    transition: all 0.3s ease;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(248, 249, 250, 0.05);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(168, 218, 220, 0.2);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -5px;
    top: -15px;
    color: rgba(168, 218, 220, 0.3);
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 218, 220, 0.2);
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background-color: rgba(248, 249, 250, 0.05);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(168, 218, 220, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    color: #0D1117;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-form-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    width: 55%;
    background-color: rgba(248, 249, 250, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form.centered {
    width: 70%;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(168, 218, 220, 0.2);
    padding: 3rem;
    background: linear-gradient(to right, rgba(13, 17, 23, 0.7), rgba(13, 17, 23, 0.95));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(168, 218, 220, 0.3);
    border-radius: 4px;
    background-color: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #A8DADC;
    box-shadow: 0 0 5px rgba(168, 218, 220, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.form-image {
    width: 40%;
}

.form-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    background-color: rgba(168, 218, 220, 0.05);
}

.contact-info-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 3rem;
}

.contact-map {
    width: 55%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.contact-map:hover .map-overlay {
    opacity: 1;
}

.map-text {
    text-align: center;
    color: #F1FAEE;
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(13, 17, 23, 0.7);
    max-width: 80%;
}

.map-text h3 {
    margin-bottom: 0.5rem;
    color: #A8DADC;
}

.map-image {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-map:hover .map-image {
    transform: scale(1.05);
}

.contact-details {
    width: 40%;
    background-color: rgba(248, 249, 250, 0.05);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(168, 218, 220, 0.2);
    color: #A8DADC;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(168, 218, 220, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item svg {
    margin-right: 1rem;
    min-width: 24px;
    color: #E63946;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #A8DADC;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 218, 220, 0.2);
}

.contact-hours h4 {
    color: #A8DADC;
    margin-bottom: 0.75rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: rgba(13, 17, 23, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(168, 218, 220, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
    color: #A8DADC;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 218, 220, 0.1);
    font-size: 0.875rem;
    color: rgba(248, 249, 250, 0.7);
}

/* ===== COOKIE POPUP ===== */
#cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0D1117;
    border: 1px solid #A8DADC;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-accept {
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    color: #0D1117;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.cookie-more {
    color: #A8DADC;
    font-size: 0.9rem;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, rgba(13, 17, 23, 0.9), rgba(230, 57, 70, 0.05));
}

.thank-you-box {
    background-color: rgba(248, 249, 250, 0.05);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(168, 218, 220, 0.2);
    position: relative;
    overflow: hidden;
}

.thank-you-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A8DADC, #E63946);
}

.thank-you-checkmark {
    text-align: center;
    margin-bottom: 2rem;
}

.thank-you-checkmark svg {
    animation: checkmark 1.5s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #A8DADC;
    margin-bottom: 2rem;
}

.thank-you-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thank-detail {
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: rgba(13, 17, 23, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #A8DADC;
    transition: all 0.3s ease;
}

.thank-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-left-color: #E63946;
}

.thank-detail svg {
    color: #A8DADC;
    margin-right: 1rem;
    flex-shrink: 0;
}

.thank-you-actions {
    margin-top: 3rem;
}

.thank-you-image {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.thank-you-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(168, 218, 220, 0.2), rgba(230, 57, 70, 0.2));
    pointer-events: none;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.legal-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.legal-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #A8DADC 0%, #E63946 100%);
    transform: translateX(-50%);
}

.legal-content {
    background-color: rgba(248, 249, 250, 0.05);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(168, 218, 220, 0.1);
    margin-bottom: 2rem;
}

.legal-content h2 {
    text-align: left;
    color: #A8DADC;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h2:after {
    left: 0;
    transform: none;
    width: 50px;
    background: #E63946;
}

.legal-content h3 {
    color: #F1FAEE;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
}

.legal-content a {
    color: #A8DADC;
    border-bottom: 1px dotted #A8DADC;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #E63946;
    border-bottom-color: #E63946;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content,
    .hero-image,
    .about-text,
    .about-image,
    .contact-form,
    .form-image,
    .contact-map,
    .contact-details,
    .services-image,
    .benefits-image {
        width: 100%;
    }
    
    .hero-section .container,
    .about-content,
    .contact-form-container,
    .contact-info-grid {
        flex-direction: column;
    }
    
    .hero-image,
    .about-image,
    .form-image,
    .contact-map {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .contact-form.centered {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .menu-icon {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }
    
    .menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #F1FAEE;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s ease;
    }
    
    .menu-icon span:nth-child(1) {
        top: 0px;
    }
    
    .menu-icon span:nth-child(2) {
        top: 10px;
    }
    
    .menu-icon span:nth-child(3) {
        top: 20px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: #0D1117;
        border-left: 1px solid rgba(168, 218, 220, 0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
        padding: 2rem;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding-top: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .contact-form.centered {
        padding: 1.5rem;
    }
    
    .map-text {
        padding: 1rem;
    }
    
    .map-text h3 {
        font-size: 1.2rem;
    }
    
    .map-text p {
        font-size: 0.9rem;
    }
    
    .thank-you-box {
        padding: 2rem 1rem;
    }
    
    .thank-you-details {
        flex-direction: column;
    }
    
    .thank-detail {
        padding: 1.25rem;
    }
} 