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

:root {
    --primary: #800020;
    --primary-light: #a33b4d;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.04);
    --container-width: 1100px;
}

/* Scrollbar hiding for cleaner look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    background-color: var(--white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Default desktop offset */
}

@media screen and (max-width: 900px) {
    html {
        scroll-padding-top: 150px;
        /* Mobile stacked header offset */
    }
}

@media screen and (max-width: 480px) {
    html {
        scroll-padding-top: 80px;
        /* Smaller mobile header offset */
    }
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2005;
    /* High z-index to stay above everything */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    /* Reduced from 15px */
}

header.menu-open {
    border-bottom: none;
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Default height */
    width: auto;
    max-width: 60vw;
    /* Responsive width */
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends white background */
}

/* Mobile specific logo constraint */
@media screen and (max-width: 480px) {
    .logo img {
        height: auto;
        max-height: 45px;
    }
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
}

/* --- DROPDOWN MENU --- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    position: absolute;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    border-radius: 4px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 0.9rem;
    display: block;
    width: 100%;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: #f7f7f7;
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- HERO SECTION --- */
#hero {
    height: 100vh;
    padding-top: 150px;
    /* Slightly reduced offset */
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%), url('https://images.unsplash.com/photo-1595846519845-68e298c2edd8?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-text {
    max-width: 600px;
    animation: fadeIn 1.5s ease;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.btn-elegant {
    display: inline-block;
    background: var(--text-dark);
    color: var(--white);
    padding: 15px 35px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--text-dark);
}

.btn-elegant:hover {
    background: transparent;
    color: var(--text-dark);
}

/* --- NEW ABOUT SECTION STYLES (Aus deinem neuen Code) --- */
#about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Logo Card Effects */
.logo-wrapper {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .logo-wrapper {
        justify-content: flex-end;
    }
}

.logo-container {
    position: relative;
}

.logo-bg {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 146, 60, 0.2) 100%);
    border-radius: 1.5rem;
    filter: blur(20px);
}

.logo-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* Badge & Content */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}



/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2002;
    position: relative;
    margin-right: 0;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation to turns bars into X */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Styles */
@media screen and (max-width: 900px) {
    .menu-toggle {
        display: flex;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    nav ul {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        flex-direction: column;
        background-color: var(--white);
        width: 100vw;
        /* cover full width */
        height: 100vh;
        justify-content: flex-start;
        padding-top: 40px;
        align-items: center;
        text-align: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1500;
        gap: 30px;
    }

    nav ul.active {
        transform: translateX(0);
    }

    nav li {
        margin: 0;
    }

    nav a {
        font-size: 1.5rem;
        color: var(--text-dark);
    }

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

    .dropdown-content {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
        padding: 0;
        background-color: transparent;
        transition: all 0.3s ease;
        overflow: hidden;
        gap: 5px;
        /* <--- Hier wird die Lücke der Dropdown-Items überschrieben */
    }

    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 250px;
        padding-top: 10px;
    }

    .dropdown-content a {
        font-size: 1.2rem;
        padding: 10px;
    }
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #92400e;
}

.description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Mini Services List */
.mini-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .mini-services {
        grid-template-columns: 1fr 1fr;
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.2s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #d97706;
    flex-shrink: 0;
}

.service-text {
    color: #334155;
    font-weight: 500;
    font-size: 0.875rem;
}

/* About Buttons */
.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.btn-new-primary {
    background: #0f172a;
    color: white;
}

.btn-new-primary:hover {
    background: #1e293b;
}

.btn-new-secondary {
    background: white;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-new-secondary:hover {
    background: #f8fafc;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-icon {
    width: 1rem;
    height: 1rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    animation: fadeInLeft 0.8s ease-out;
}

.about-content>* {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.about-content>*:nth-child(1) {
    animation-delay: 0.2s;
}

.about-content>*:nth-child(2) {
    animation-delay: 0.3s;
}

.service-item {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.service-item:nth-child(1) {
    animation-delay: 0.6s;
}

.service-item:nth-child(2) {
    animation-delay: 0.7s;
}

.service-item:nth-child(3) {
    animation-delay: 0.8s;
}

.service-item:nth-child(4) {
    animation-delay: 0.9s;
}


/* --- VORTEILE (Features) --- */
#features {
    padding: 80px 0;
    background: var(--bg-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* --- LEISTUNGEN --- */
#services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    height: 3px;
    width: 70px;
    background: var(--primary);
    margin: 0 auto;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--primary);
}



.service-card h3 {
    margin: 20px 0;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid transparent;
}

.service-link:hover {
    border-bottom-color: var(--primary);
}

/* --- KONTAKT --- */
#contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-info i {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1rem;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

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

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #777;
}

.checkbox-wrapper input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid #eee;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.8rem;
}

.footer-links a {
    color: #888;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* --- LEGAL PAGES (Impressum & Datenschutz) --- */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 20px 80px;
    color: var(--text-gray);
    animation: fadeIn 1s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    width: 100%;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-wa 2s infinite;
}

/* --- MOBILE --- */
@media(max-width: 900px) {
    .nav-inner {
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0px;
        /* Removed padding */
    }

    nav ul {
        margin-top: 0;
        gap: 0;
    }

    #projects {
        padding-top: 160px;
    }

    #contact {
        padding-top: 160px;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- CAROUSEL (Projects) --- */
#projects {
    padding: 80px 0;
    background: #fdfdfd;
    overflow: hidden;
    /* Prevent horizontal scroll on body */
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* iOS momentum scrolling */
    padding-bottom: 60px;
    /* Space for scrollbar if visible */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.carousel-slide {
    flex: 0 0 85%;
    /* Shows part of the next slide to encourage scrolling */
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 45%;
        /* Show 2 slides on desktop */
    }
}

.carousel-slide:hover {
    transform: translateY(-5px);
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    padding: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.slide-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Navigation Arrows (Optional visual indicators) */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
}

.carousel-nav.prev {
    left: -25px;
    display: none;
    /* Hidden on mobile by default */
}

.carousel-nav.next {
    right: -25px;
    display: none;
}

@media (min-width: 1024px) {

    .carousel-nav.prev,
    .carousel-nav.next {
        display: flex;
        /* Show only on larger screens */
    }
}

/* --- LIGHTBOX (Modal) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

/* Make images in carousel clickable */
.carousel-slide img {
    cursor: pointer;
}

/* --- MOBILE RESPONSIVENESS (Lightbox) --- */
@media screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }

    .close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    #caption {
        width: 90%;
        font-size: 1rem;
    }
}

/* --- REVIEWS (Google Style) --- */
.review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(135deg, #FF6F61, #D83A56);
}

.review-card:nth-child(2n) .review-avatar {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.review-card:nth-child(3n) .review-avatar {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.review-info {
    flex-grow: 1;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
    text-align: left;
}

.google-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: left;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-style: italic;
    text-align: left;
}

.legal-content {
    padding: 120px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
    width: 100%;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #444;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
}

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

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