/* Reset and Base Styles */
*,::before,::after{
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

/*===== VARIABLES CSS =====*/
:root{
    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*===== Colors =====*/
    --first-color: #FCA4A6;
    --first-color-dark: #C1576A;
    --first-color-darken: #A83E51;
    --dark-color: #EDB1AD;
    --dark-color-light: #8A8A8A;
    --dark-color-lighten: #F2F2F2;
    --whitewhite-color: #FCF8F8;
    --white-color: #FFF;
    
    /*===== Font and typography =====*/
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 1.25rem;
    --bigbig-font-size: 2.5rem;
    --bigger-font-size: 1.5rem;
    --biggest-font-size: 2rem;
    --normal-font-size: .938rem;
    --h2-font-size: 1.25rem;
    --smaller-font-size: 0.813rem;

    /*===== Margenes =====*/
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
}

@media screen and (min-width: 768px){
    :root{
        --body-font: 'Poppins', sans-serif;
        --bigbig-font-size: 3rem;
        --big-font-size: 1.5rem;
        --bigger-font-size: 2rem;
        --biggest-font-size: 3rem;
        --h2-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --smaller-font-size: 0.875rem;
    }
}

a{
    text-decoration: none;
    color: var(--white-color);
}

ul{
    padding: 0;
    list-style: none;
}

/*===== CLASS CSS ===== */
.section{
    padding: 5rem 0 2rem;
}

/*===== LAYOUT =====*/
.bd-grid{
    max-width: 1524px;
    display: grid;
    grid-template-columns: 100%;
    column-gap: 2rem;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}

@media screen and (min-width: 768px){
    .bd-grid{
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 4rem);
    }
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 40px;
    line-height: 47px;
    font-weight: 400;
}

h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    color: #517e90;
}

h3 {
    font-size: 26px;
    line-height: 24px;
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.header-scrolled {
    height: 80px;
}

.header-scrolled .header-container {
    padding: 10px 242px;
}

.header-scrolled .logo {
    width: 70px;
    height: 70px;
}

.header-scrolled .logo img {
    height: 100%;
    width: 100%;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 242px;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 121px;
    height: 121px;
    transition: width 0.3s ease, height 0.3s ease;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 70px;
}

.nav a {
    font-family: 'Inria Serif', serif;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #517e90;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-top: 140px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    height: 550px;
    overflow: hidden;
    transition: margin-top 0.3s ease;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero-image {
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: 660px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 111px 0 0 203px;
    max-width: 590px;
}

.hero-content-right {
    padding: 0;
    max-width: none;
    position: absolute;
    right: 120px;
    top: 58px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-overlay {
    background: rgba(81, 126, 144, 0.75);
    padding: 35px 57px;
    width: 538px;
    position: relative;
    z-index: 2;
}

.hero-content-right .hero-subtitle {
    margin-bottom: 4px;
}

.hero-content-right .hero-title {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 47px;
}

.hero-content-right .hero-description {
    max-width: 398px;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: white;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 40px;
    line-height: 47px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hero-title .bold {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.hero-description {
    font-size: 16px;
    line-height: 28px;
    color: white;
    margin-bottom: 40px;
    max-width: 387px;
}

.cta-button {
    background-color: #517e90;
    color: white;
    border: none;
    padding: 0 27px;
    font-size: 16px;
    line-height: 39px;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

.hero-overlay-button {
    background-color: white;
    color: #517e90;
    border: none;
    margin-top: 20px;
    display: inline-flex;
}

.hero-overlay-button:hover {
    background-color: #f5f5f5;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 51px;
    z-index: 3;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-arrows .arrow {
    pointer-events: all;
}

.arrow {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Content Section */
.content {
    padding: 62px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.content-container {
    display: flex;
    gap: 60px;
    padding: 0 126px;
    align-items: flex-start;
}

.content-text {
    flex: 1;
    max-width: 541px;
}

.content-label {
    font-size: 16px;
    line-height: 20px;
    color: #517e90;
    margin-bottom: 20px;
}

.content-title {
    font-size: 32px;
    line-height: 50px;
    color: #517e90;
    margin-bottom: 30px;
}

.content-description {
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.content-description p {
    margin-bottom: 20px;
}

.content-images {
    position: relative;
    flex: 1;
    max-width: 541px;
}

.content-image-main {
    width: 100%;
    height: 364px;
    object-fit: cover;
}

.content-image-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 315px;
    height: 210px;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Portfolio Section */
.portfolio {
    background-color: #f9f9f9;
    padding: 60px 0;
    width: 100%;
}

.portfolio-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    text-align: center;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 20px;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.portfolio-container .cta-button {
    display: inline-flex;
    justify-content: center;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
}

.portfolio-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 40px 20px 20px;
    text-align: center;
}

.portfolio-couple {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 38px;
    color: white;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}

.portfolio-testimonial {
    background: white;
    padding: 30px 20px;
    text-align: center;
    color: #517e90;
    margin-top: 0;
}

.portfolio-testimonial .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #517e90 !important;
}

.testimonial-author {
    font-size: 14px;
    line-height: 40px;
    color: #000;
}

/* Services Section */
.services {
    padding: 60px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.services-container {
    padding: 0 195px;
}

.services-label {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #517e90;
    margin-bottom: 20px;
}

.services-title {
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 267px;
    object-fit: cover;
    display: block;
}

.service-overlay {
    background-color: #517e90;
    padding: 30px;
    color: white;
    text-align: center;
    height: 159px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 24px;
    color: white;
    margin-bottom: 10px;
}

.service-description {
    font-size: 16px;
    line-height: 24px;
    color: white;
}

/* Collaboration Section */
.collaboration {
    background-color: #f9f9f9;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
}

.collaboration-container {
    display: flex;
    min-height: 813px;
}

.collaboration-image {
    width: 480px;
    flex-shrink: 0;
}

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

.collaboration-content {
    flex: 1;
    padding: 60px 80px;
}

.collaboration-title {
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #517e90;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

/* About Section */
.about {
    padding: 54px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    gap: 60px;
    padding: 0 95px;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-size: 29px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    max-width: 380px;
    height: 562px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

/* Divider Image Section */
.divider-image {
    position: relative;
    width: 100%;
    height: 602px;
    overflow: hidden;
}

.divider-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.divider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.divider-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 70px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 0 20px;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
    padding: 80px 0;
    width: 100%;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    background: white;
    padding: 60px 60px 40px 60px;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
}

.contact-title {
    text-align: center;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #517e90;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 40px 60px 60px 60px;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

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

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #8a8a8a;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #517e90;
    opacity: 1;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.faq-container {
    padding: 0 223px;
}

.faq-title {
    text-align: center;
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #517e90;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 22px;
    line-height: 40px;
    font-weight: 400;
    color: #000;
    flex: 1;
}

.faq-arrow {
    color: #517e90;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

/*===== FOOTER =====*/
.footer{
    background-color: #517e90;
}

.footer__container{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    background-color: #517e90;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__container a{
    color: white;
}

.footer__box{
    margin-bottom: var(--mb-4);
    width: 100%;
    max-width: 220px;
}

.footer__logo{
    width: 159px;
    height: auto;
    margin: 0 auto 0 0;
}

.footer__box:first-child{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__box:first-child .footer__logo{
    margin: 0 auto;
}

.footer__logo img{
    width: 100%;
    height: auto;
    display: block;
}

.footer__title{
    font-size: var(--big-font-size);
    color: white;
    text-align: left;
    margin-bottom: var(--mb-1);
}

.footer__description{
    color: white;
    font-size: var(--normal-font-size);
    text-align: left;
}

.footer__link{
    display: block;
    width: max-content;
    margin-bottom: var(--mb-1);
    color: white;
    text-align: left;
}

.footer__box ul{
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer__box ul li{
    margin-bottom: var(--mb-1);
}

.footer__box:last-child{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
}

.footer__social{
    font-size: 1.5rem;
    color: white;
    display: inline-block;
}

.footer__copy{
    padding-top: 3rem;
    font-size: var(--smaller-font-size);
    color: white;
    text-align: center;
}

/* Angebot Page Styles */
.angebot-hero {
    height: 750px;
}

.angebot-hero .hero-image {
    top: -80px;
    height: 830px;
}

.angebot-hero .hero-image img {
    object-position: top;
    height: 830px;
}

.angebot-hero-content {
    max-width: 600px;
    padding: 111px 0 0 203px;
}

.angebot-hero-title {
    font-size: 36px;
    line-height: 47px;
    margin-bottom: 20px;
}

.angebot-hero-description {
    max-width: 443px;
}

/* Über mich Page Styles */
.ueber-mich-hero .hero-image {
    top: -80px;
}

.ueber-mich-hero .hero-image img {
    object-position: top;
}

.ueber-mich-hero-content {
    max-width: 500px;
    padding: 111px 203px 0 0;
    margin-left: auto;
    margin-right: 0;
}

.ueber-mich-hero-title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.ueber-mich-hero-description {
    max-width: 387px;
    font-size: 16px;
    line-height: 24px;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* About Section für Über mich Seite */
.ueber-mich-about {
    padding: 80px 0;
    width: 100%;
    background-color: #fff;
}

.ueber-mich-about-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ueber-mich-about-title {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    width: 100%;
    padding-bottom: 0;
}

.ueber-mich-about-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 0;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.ueber-mich-about-container .ueber-mich-about-title {
    margin-bottom: 0 !important;
}

.ueber-mich-about-container .ueber-mich-about-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Meine Werte Section */
.meine-werte {
    padding: 60px 0;
    width: 100%;
    background-color: #fff;
}

.meine-werte-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 238px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: flex-start;
}

.wert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wert-icon {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 30px;
}

.wert-icon-circle {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background-color: #517e90;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wert-icon .icon-image {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.wert-title {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 20px;
    text-align: center;
}

.wert-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: center;
}

.wert-text strong {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Meine Vision Section */
.meine-vision {
    padding: 0;
    width: 100%;
    background-color: #e1d7cb;
    position: relative;
    min-height: 823px;
    overflow: hidden;
}

.meine-vision-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 823px;
    padding: 70px 0;
}

.meine-vision-content {
    position: absolute;
    left: 242px;
    top: 165px;
    width: 561px;
    background: white;
    padding: 60px 40px;
    height: 393px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
}

.meine-vision-title {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 20px;
    text-align: center;
}

.meine-vision-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.meine-vision-content .cta-button {
    align-self: flex-start;
    margin-top: 0;
}

.meine-vision-image {
    position: absolute;
    right: 204px;
    top: 43px;
    width: 556px;
    height: 650px;
    overflow: hidden;
    z-index: 1;
}

.meine-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Referenzen Page Styles */
.referenzen-hero {
    padding: 180px 0 20px;
    width: 100%;
    background-color: #fff;
}

.referenzen-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 120px;
    text-align: center;
}

.referenzen-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 30px;
    text-align: center;
}

.referenzen-hero-description {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Referenzen Gallery Section */
.referenzen-gallery {
    padding: 20px 0 60px;
    width: 100%;
    background-color: #fff;
}

.referenzen-gallery-container {
    width: 100%;
    padding: 0;
    position: relative;
}

.referenzen-gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 12px;
    position: relative;
    width: 100%;
}

@media (max-width: 1440px) {
    .referenzen-gallery-images {
        grid-template-columns: 1fr 1fr 2fr;
    }
}

@media (max-width: 1024px) {
    .referenzen-gallery-images {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .referenzen-gallery-images {
        grid-template-columns: 1fr;
    }
}

.gallery-image {
    width: 100%;
    height: 403px;
    overflow: hidden;
}

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

.gallery-image-large {
    height: 404px;
}

.gallery-image-hidden {
    display: none;
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.gallery-arrows .arrow {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    font-size: 24px;
    color: #517e90;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-arrows .arrow:hover {
    background: rgba(255, 255, 255, 1);
}

/* Referenzen Testimonials Section */
.referenzen-testimonials {
    padding: 80px 0;
    width: 100%;
    background-color: #e1d7cb;
}

.referenzen-testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 120px;
    text-align: center;
    position: relative;
}

.referenzen-testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 40px;
    color: #0b3b6b;
    margin-bottom: 40px;
    text-align: center;
}

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

.testimonial-text {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-author {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: center;
}

.testimonial-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.testimonial-arrows .arrow {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    font-size: 24px;
    color: #517e90;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.testimonial-arrows .arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-indicators .indicator.active {
    background-color: #000;
}

/* Leistungen Angebot Section */
.leistungen-angebot {
    padding: 60px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.leistungen-angebot-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 120px;
    margin-bottom: 60px;
}

.leistung-item {
    text-align: center;
}

.leistung-icon {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 30px;
}

.icon-circle {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background-color: #517e90;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 1;
}

.leistung-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 20px;
}

.leistung-description {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.leistung-ideal {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: left;
}

.leistungen-cta {
    text-align: center;
    padding: 0 120px;
}

/* Zitatblock Section */
.zitatblock {
    background-color: #92a7aa;
    padding: 80px 0;
    width: 100%;
}

.zitatblock-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.zitatblock-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 45px;
    color: white;
    margin-bottom: 30px;
}

.zitatblock-text {
    font-size: 16px;
    line-height: 28px;
    color: white;
}

/* Concept Store Section */
.concept-store {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    height: 550px;
    overflow: hidden;
}

.concept-store-image {
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: 660px;
    overflow: hidden;
}

.concept-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.concept-store-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

.concept-store-content-right {
    padding: 0;
    max-width: none;
    position: absolute;
    right: 120px;
    top: 58px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.concept-store-overlay {
    background: rgba(81, 126, 144, 0.75);
    padding: 35px 57px;
    width: 538px;
    position: relative;
    z-index: 2;
}

.concept-store-content-right .concept-store-subtitle {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 20px;
    color: white;
}

.concept-store-content-right .concept-store-title {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 47px;
    color: white;
}

.concept-store-content-right .concept-store-description {
    max-width: 398px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 28px;
    color: white;
}

.concept-store-button {
    background-color: white;
    color: #517e90;
    border: none;
    margin-top: 20px;
    display: inline-flex;
}

.concept-store-button:hover {
    background-color: #f5f5f5;
}

.concept-store-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.concept-store-features li {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.concept-store-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #517e90;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Slider Section */
.image-slider {
    padding: 60px 0;
    width: 100%;
    background-color: #fff;
}

.image-slider-container {
    width: 100%;
    padding: 0;
    position: relative;
}

.image-slider-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.image-slider-gallery .gallery-image {
    width: 100%;
    height: 403px;
    overflow: hidden;
}

.image-slider-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-slider-gallery .gallery-image-hidden {
    display: none;
}

.image-slider-container .slider-arrows {
    position: absolute;
    top: calc(100% - 403px + 201.5px);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.image-slider-container .slider-arrows .arrow {
    pointer-events: all;
}

.image-slider-label {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #517e90;
    margin-bottom: 20px;
    padding: 0 20px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.image-slider-title {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.image-slider-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.image-slider-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.image-slider-gallery .gallery-image {
    width: 100%;
    height: 403px;
    overflow: hidden;
}

.image-slider-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-slider-gallery .gallery-image-hidden {
    display: none;
}

.image-slider-container .slider-arrows {
    position: absolute;
    top: calc(100% - 403px + 201.5px);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.image-slider-container .slider-arrows .arrow {
    pointer-events: all;
}

/* Papeterie & Dekoration Section */
.papeterie-deko {
    background-color: #f9f9f9;
    padding: 93px 0;
    width: 100%;
}

.papeterie-deko-container {
    display: flex;
    gap: 0;
    padding: 0;
    align-items: stretch;
    background: white;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    max-width: 1440px;
    margin: 0 auto;
    width: calc(100% - 178px);
}

.papeterie-deko-content {
    flex: 1;
    background: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 521px;
    box-sizing: border-box;
}

.papeterie-deko-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 20px;
}

.papeterie-deko-text {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    margin-bottom: 40px;
}

.papeterie-deko-image {
    flex: 1;
    height: 521px;
    min-width: 0;
}

.papeterie-deko-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Workshops Section */
.workshops {
    background-color: #f9f9f9;
    padding: 93px 0;
    width: 100%;
}

.workshops-container {
    display: flex;
    gap: 0;
    padding: 0;
    align-items: stretch;
    background: white;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
    max-width: 1440px;
    margin: 0 auto;
    width: calc(100% - 178px);
}

.workshops-image {
    flex: 1;
    height: 725px;
    min-width: 0;
}

.workshops-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workshops-content {
    flex: 1;
    background: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 725px;
    box-sizing: border-box;
    align-items: flex-start;
}

.workshops-title {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 20px;
}

.workshops-subtitle {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 30px;
}

.workshops-text {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
}

.workshops-content .cta-button {
    margin-top: 20px;
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
}

/* Responsive adjustments for 1440px design */
@media (max-width: 1440px) {
    .header-container,
    .content-container,
    .portfolio-container,
    .services-container,
    .about-container,
    .faq-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.hero.hero--offset .hero-image {
    top: 0;
    height: 550px;
}

.hero.hero--offset {
    margin-top: 140px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #517e90;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        height: 80px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
        left: 20px;
        transform: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 20px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

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

    /* Overlay für Sidebar */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
        pointer-events: none;
    }

    body.sidebar-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-right {
        margin-top: 0;
    }

    /* Alle Links direkt untereinander */
    .nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
    }

    .nav-left a:last-child {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-right a:first-child {
        border-top: none;
    }

    .nav a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-scrolled {
        height: 80px;
    }

    .header-scrolled .header-container {
        padding: 10px 20px;
    }

    .header-scrolled .logo {
        width: 60px;
        height: 60px;
    }

    /* Hero Mobile */
    .hero {
        margin-top: 80px;
        height: 400px;
    }

    .hero.hero--offset {
        margin-top: 80px;
    }

    .hero-image {
        height: 400px;
        top: 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 40px 0 0 0;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-content .cta-button {
        font-size: 14px;
        padding: 0 20px;
        height: 36px;
        line-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-arrows {
        padding: 0 20px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Hero Slide 2 Mobile */
    .hero-content-right {
        position: relative;
        right: auto;
        top: auto;
        padding: 40px 20px 0 20px;
        width: 100%;
    }

    .hero-overlay {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        background: rgba(81, 126, 144, 0.85);
    }

    .hero-content-right .hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-content-right .hero-description {
        max-width: 100%;
    }

    .hero-overlay-button {
        margin-top: 20px !important;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    /* Content Section Mobile */
    .content {
        padding: 40px 0;
    }

    .content-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .content-text {
        max-width: 100%;
        text-align: center;
    }

    .content-label {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: center;
    }

    .content-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .content-description {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .content-description p {
        margin-bottom: 16px;
    }

    .content-images {
        max-width: 100%;
    }

    .content-image-main {
        height: 250px;
    }

    .content-image-overlay {
        width: 200px;
        height: 140px;
        bottom: -30px;
        right: -30px;
        border: 3px solid white;
    }

    /* Portfolio Section Mobile */
    .portfolio {
        padding: 40px 0;
    }

    .portfolio-container {
        padding: 0 20px;
    }

    .portfolio-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .portfolio-subtitle {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .portfolio-image-container {
        height: 300px;
    }

    .portfolio-couple {
        font-size: 24px;
        line-height: 30px;
    }

    .portfolio-testimonial {
        padding: 20px;
        margin-top: 0;
    }

    .portfolio-testimonial .testimonial-text {
        font-size: 20px;
        line-height: 24px;
        color: #517e90 !important;
    }

    .testimonial-author {
        font-size: 12px;
        line-height: 30px;
    }

    /* Services Section Mobile */
    .services {
        padding: 40px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-label {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .services-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .services-subtitle {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        height: auto;
    }

    .service-item img {
        height: 210px !important;
    }

    .service-overlay {
        height: auto;
        padding: 20px;
        min-height: 120px;
    }

    .service-name {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 14px;
        line-height: 20px;
    }

    /* Collaboration Section Mobile */
    .collaboration {
        padding: 0;
    }

    .collaboration-container {
        flex-direction: column;
        min-height: auto;
    }

    .collaboration-image {
        width: 100%;
        height: 300px;
    }

    .collaboration-content {
        padding: 40px 20px;
        text-align: center;
    }

    .collaboration-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    .steps {
        gap: 30px;
        margin-bottom: 40px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .step-content {
        text-align: center;
    }

    .collaboration-content .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: auto;
    }

    .step-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 14px;
        line-height: 24px;
    }

    /* About Section Mobile */
    .about {
        padding: 40px 0;
    }

    .about-container {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .about-content {
        max-width: 100%;
        order: 2;
        padding: 0 20px;
        text-align: center;
    }

    .about-image {
        order: 1;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0;
        margin-bottom: 40px;
    }

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

    .about-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .about-text {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    .about-content .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: auto;
    }

    .about-text p {
        margin-bottom: 16px;
    }

    .about-image {
        max-width: 100%;
        height: 300px;
    }

    /* Divider Image Mobile */
    .divider-image {
        height: 300px;
    }

    .divider-title {
        font-size: 28px;
        line-height: 40px;
        padding: 0 20px;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-header {
        padding: 30px 20px 20px 20px;
    }

    .contact-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .contact-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form {
        padding: 20px;
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    /* FAQ Section Mobile */
    .faq {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .faq-question h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Footer Mobile */
    .footer__container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .footer__box {
        max-width: 100%;
        text-align: center;
    }

    .footer__box:first-child {
        justify-content: center;
    }

    .footer__logo {
        margin: 0 auto;
    }

    .footer__title,
    .footer__description,
    .footer__link,
    .footer__box ul {
        text-align: center;
    }

    .footer__box:last-child {
        justify-content: center;
    }

    /* Typography Mobile */
    h1 {
        font-size: 28px;
        line-height: 34px;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 28px;
    }

    /* Image Slider Section Mobile */
    .image-slider {
        padding: 40px 0;
    }

    .image-slider-container {
        padding: 0;
    }

    .image-slider-gallery {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }

    .image-slider-gallery .gallery-image {
        width: 100%;
        height: 300px;
    }

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

    .image-slider-container .slider-arrows {
        position: absolute;
        top: calc(100% - 300px + 150px);
        transform: translateY(-50%);
        padding: 0 20px;
    }

    /* Papeterie & Dekoration Section Mobile */
    .papeterie-deko {
        padding: 40px 0;
    }

    .papeterie-deko-container {
        flex-direction: column;
        width: calc(100% - 40px);
        padding: 0;
        gap: 0;
    }

    .papeterie-deko-content {
        max-width: 100%;
        padding: 30px 20px;
        height: auto;
    }

    .papeterie-deko-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .papeterie-deko-text {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .papeterie-deko-image {
        max-width: 100%;
        height: 300px;
    }

    /* Workshops Section Mobile */
    .workshops {
        padding: 40px 0;
    }

    .workshops-container {
        flex-direction: column-reverse;
        width: calc(100% - 40px);
        padding: 0;
        gap: 0;
    }

    .workshops-image {
        width: 100%;
        height: 300px;
    }

    .workshops-content {
        max-width: 100%;
        padding: 30px 20px;
        height: auto;
    }

    .workshops-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .workshops-subtitle {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .workshops-text {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    /* Referenzen Page Mobile */
    .referenzen-hero {
        padding: 100px 0 20px;
    }

    .referenzen-hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .referenzen-hero-description {
        font-size: 14px;
        line-height: 24px;
    }

    .referenzen-gallery {
        padding: 20px 0 40px;
    }

    .referenzen-testimonials {
        padding: 40px 0;
    }

    .referenzen-testimonials-container {
        padding: 0 20px;
    }

    .referenzen-testimonials-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    /* Angebot Page Mobile */
    .angebot-hero-content {
        padding: 40px 20px 0 20px;
        max-width: 100%;
    }

    .angebot-hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .angebot-hero-description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }

    .leistungen-angebot {
        padding: 40px 0;
    }

    .leistungen-angebot-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }

    .leistung-title {
        font-size: 24px;
        line-height: 32px;
    }

    .leistung-description,
    .leistung-ideal {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .leistungen-cta {
        padding: 0 20px;
    }

    /* Zitatblock Section Mobile */
    .zitatblock {
        padding: 40px 0;
    }

    .zitatblock-container {
        padding: 0 20px;
    }

    .zitatblock-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .zitatblock-text {
        font-size: 14px;
        line-height: 24px;
    }

    /* Concept Store Section Mobile */
    .concept-store {
        height: 400px;
        margin-top: 0px;
    }

    .concept-store-image {
        height: 400px;
        top: 0;
    }

    .concept-store-content-right {
        position: relative;
        right: auto;
        top: auto;
        padding: 40px 20px 0 20px;
        width: 100%;
        align-items: center;
    }

    .concept-store-overlay {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        background: rgba(81, 126, 144, 0.85);
    }

    .concept-store-content-right .concept-store-title {
        font-size: 28px;
        line-height: 34px;
    }

    .concept-store-content-right .concept-store-description {
        max-width: 100%;
    }

    .concept-store-button {
        margin-top: 20px;
        width: auto;
        display: inline-flex;
        align-self: center;
    }

    /* Über mich Page Mobile */
    .ueber-mich-hero-content {
        padding: 40px 20px 0 20px;
        max-width: 100%;
    }

    .ueber-mich-hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .ueber-mich-hero-description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }

    .ueber-mich-about-container {
        padding: 0 20px;
    }

    .ueber-mich-about-title {
        font-size: 24px;
        line-height: 32px;
    }

    .ueber-mich-about-text {
        font-size: 14px;
        line-height: 24px;
    }

    .meine-werte-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }

    .meine-vision-content {
        position: static;
        padding: 40px 20px;
    }

    .meine-vision-title {
        font-size: 24px;
        line-height: 32px;
    }

    .meine-vision-text {
        font-size: 14px;
        line-height: 24px;
    }

    /* Responsive adjustments for 1440px design - Mobile override */
    @media (max-width: 1440px) {
        .header-container,
        .content-container,
        .portfolio-container,
        .services-container,
        .about-container,
        .faq-container,
        .footer-container {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 24px;
    border-radius: 12px;
    max-width: 1440px;
    width: calc(100% - 40px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.cookie-banner-description {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-button {
    padding: 12px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
}

.cookie-button-accept {
    background-color: #517e90;
    color: white;
}

.cookie-button-accept:hover {
    background-color: #3d5f6f;
}

.cookie-button-decline {
    background-color: transparent;
    color: #517e90;
    border: 1px solid #517e90;
}

.cookie-button-decline:hover {
    background-color: #f5f5f5;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        padding: 20px;
        max-width: calc(100% - 32px);
        width: calc(100% - 32px);
        border-radius: 12px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-text {
        text-align: center;
    }

    .cookie-banner-title {
        font-size: 18px;
    }

    .cookie-banner-description {
        font-size: 13px;
    }

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

    .cookie-button {
        width: 100%;
        padding: 14px 24px;
    }
}

/* Shop Page Styles */
.shop-banner {
    position: relative;
    width: 100%;
    margin-top: 140px;
    height: 550px;
    overflow: hidden;
}

.shop-banner-image {
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: 660px;
    overflow: hidden;
}

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

.shop-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
}

.shop-banner-content {
    position: absolute;
    right: 120px;
    top: 58px;
    z-index: 2;
}

.shop-banner-overlay {
    background: rgba(81, 126, 144, 0.75);
    padding: 35px 57px;
    width: 538px;
    position: relative;
    z-index: 2;
}

.shop-banner-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: white;
    margin-bottom: 4px;
}

.shop-banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 47px;
    color: white;
    margin-bottom: 10px;
}

.shop-banner-description {
    font-size: 16px;
    line-height: 28px;
    color: white;
    max-width: 398px;
    margin-bottom: 0;
}

/* Shop Map Section */
.shop-map {
    padding: 0;
    width: 100%;
    background-color: #f9f9f9;
    position: relative;
    min-height: 823px;
    overflow: hidden;
}

.shop-map-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 823px;
    padding: 70px 0;
}

.shop-map-content {
    position: absolute;
    left: 242px;
    top: 165px;
    width: 561px;
    background: white;
    padding: 60px 40px;
    height: auto;
    min-height: 393px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
}

.shop-map-title {
    font-family: 'Inria Serif', serif;
    font-size: 32px;
    line-height: 40px;
    color: #517e90;
    margin-bottom: 30px;
    text-align: center;
}

.shop-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.shop-map-image {
    position: absolute;
    right: 204px;
    top: 43px;
    width: 556px;
    height: 650px;
    overflow: hidden;
    z-index: 1;
}

.shop-map-image iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.shop-address,
.shop-hours,
.shop-contact {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin: 0;
}

.shop-address strong,
.shop-hours strong,
.shop-contact strong {
    color: #517e90;
    display: block;
    margin-bottom: 3px !important;
    font-weight: 600;
    line-height: 1.2;
}

.shop-address br:first-of-type,
.shop-hours br:first-of-type,
.shop-contact br:first-of-type {
    line-height: 0.5;
    display: block;
    margin-bottom: 2px;
}

/* Shop Mobile Styles */
@media (max-width: 768px) {
    .shop-banner {
        margin-top: 80px;
        height: 400px;
    }

    .shop-banner-image {
        height: 400px;
        top: 0;
    }

    .shop-banner-content {
        position: relative;
        right: auto;
        top: auto;
        padding: 40px 20px 0 20px;
        width: 100%;
    }

    .shop-banner-overlay {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        background: rgba(81, 126, 144, 0.85);
    }

    .shop-banner-title {
        font-size: 28px;
        line-height: 34px;
    }

    .shop-banner-description {
        max-width: 100%;
    }

    .shop-map {
        padding: 40px 0;
        min-height: auto;
    }

    .shop-map-container {
        padding: 0 20px;
        min-height: auto;
        position: relative;
    }

    .shop-map-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .shop-map-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .shop-map-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }

    .shop-contact-info {
        gap: 20px;
        text-align: center;
    }

    .shop-address,
    .shop-hours,
    .shop-contact {
        text-align: center;
    }
}

