:root {
    --primary: #C4A375; /* Mittel-Beige */
    --primary-light: #E6D4B8; /* Helles Beige */
    --primary-dark: #A08555; /* Dunkleres Beige */
    --dark: #121212; /* Fast Schwarz */
    --dark-surface: #1E1E1E; /* Dunkelgrau für Oberflächen */
    --light: #FFFFFF; /* Weiß */
    --light-surface: #F8F9FA; /* Sehr helles Grau für Oberflächen */
    --gray: #6C757D; /* Mittelgrau für Text */
    --success: #4CAF50; /* Grün für Erfolgshinweise */
    --warning: #FFC107; /* Gelb für Warnungen */
    --danger: #F44336; /* Rot für Fehler */
    --border-radius: 8px;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}
.typewriter-h1 h1 {
    animation: typing-smooth 4s ease-out, blink-caret 0.8s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing-smooth {
    0% {
        width: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
        width: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(196, 163, 117, 0.21);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.logo-footer {
    color: white;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    margin-right: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--light) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(196, 163, 117, 0.3);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}
.hero-tagline.typing {
    .typing {
        overflow: hidden;           
        border-right: .15em solid var(--primary); /* Beige Cursor statt Lila */
        white-space: nowrap;
        animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
      }
      
      @keyframes typing {
        from { width: 0 }
        to { width: 100% }
      }
      
      @keyframes blink-caret {
        50% { border-color: transparent; }
      }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--light) 0%, rgba(227, 172, 97, 0.388) 100%);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EED9C4;
    z-index: -1;
}


.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(224, 169, 92, 0.3);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(196, 163, 117, 0.4);
}

.feature-text {
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--light);
    box-shadow: 0 4px 14px rgba(196, 163, 117, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}
.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
  }
  
  .tagline:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 163, 117, 0.4);
    color: var(--light);
}

.btn-primary:hover i {
    animation: arrowMove 0.5s ease-in-out;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 10px rgba(196, 163, 117, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(196, 163, 117, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.2rem;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--light);
    border-color: transparent;
}

.btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.hero-arrow-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.hero-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(45deg);
    box-shadow: 3px 3px 5px rgba(196, 163, 117, 0.2);
    transition: border-color 0.3s ease;
}

.hero-arrow-container:hover .hero-arrow {
    border-color: var(--primary-dark);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Products Section */
.products-section {
    background-color: var(--light-surface);
    position: relative;
    background: linear-gradient(180deg, var(--light-surface) 0%, rgba(196, 163, 117, 0.05) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.section-subheading {
    font-size: 1.25rem;
    color: var(--gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 768px) {
    .products-grid {
      max-width: 600px;
    }
  }

.product-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    border: green;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #a9dfbf, #2ecc71);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 0;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.5);
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--light);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 2px 10px rgba(196, 163, 117, 0.3);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: translateY(-8px) scale(1.05) rotate(5deg);
    box-shadow: 0 5px 15px rgba(196, 163, 117, 0.4);
  }

.product-card h3 {
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: var(--primary);
}

.product-features {
    margin: 1.5rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.product-features li:hover {
    transform: translateX(5px);
}

.product-features li i {
    color: var(--primary);
}

.appstore-btn {
    background: linear-gradient(135deg, var(--dark), #323232);
    color: var(--light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appstore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.appstore-btn:hover::before {
    opacity: 1;
}

.appstore-btn:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 15px rgba(196, 163, 117, 0.3);
}

.appstore-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.appstore-btn:hover i {
    transform: scale(1.1);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
    color: var(--light);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.quote-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 85%, rgba(0, 0, 0, 0.1) 0%, transparent 25%);
    z-index: 0;
}

.quote-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quote-container:hover .quote-text {
    transform: scale(1.03);
}

.quote-text .highlight {
    color: var(--light);
    font-weight: 700;
    position: relative;
}

.quote-text .highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: scaleX(1);
}

.quote-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.quote-container:hover .quote-subtitle {
    opacity: 1;
}

.quote-divider {
    width: 80px;
    height: 4px;
    background-color: var(--light);
    margin: 0 auto 1.5rem;
    opacity: 0.5;
    border-radius: 2px;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.quote-container:hover .quote-divider {
    width: 120px;
    opacity: 0.8;
}

.quote-author {
    
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.quote-container:hover .quote-author {
    transform: translateY(5px);
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
    position: relative;
    background: linear-gradient(180deg, var(--light) 0%, rgba(196, 163, 117, 0.1) 100%);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(196, 163, 117, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--light);
    transition: width 0.3s ease;
}

.contact-email:hover {
    color: var(--light);
    transform: translateY(-3px);
}

.contact-email:hover::after {
    width: 200px;
}

.contact-button {
    background: var(--light);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::after {
    left: 100%;
}

.contact-button:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: rotate(15deg) scale(1.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background-color: var(--light);
    color: var(--primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, var(--dark) 0%, #000000 100%);
    color: var(--light);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgba(196, 163, 117, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(196, 163, 117, 0.1) 0%, transparent 30%);
    z-index: 0;
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.footer-col h3:hover::after {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 40px;
    margin-right: 0.75rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--light);
    padding-left: 20px;
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 0 10px rgba(196, 163, 117, 0.5);
}

.newsletter-form button i {
    transition: transform 0.3s ease;
}

.newsletter-form button:hover i {
    transform: rotate(15deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--light);
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(196, 163, 117, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(196, 163, 117, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark), #000000);
    color: var(--light);
    padding: 1.5rem 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-all {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    box-shadow: 0 2px 8px rgba(196, 163, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.accept-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.accept-all:hover::after {
    left: 100%;
}

.accept-all:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 163, 117, 0.4);
}

.accept-necessary {
    background-color: transparent;
    border: 1px solid var(--light);
    color: var(--light);
    transition: all 0.3s ease;
}

.accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hover effects for the overlay */
.overlay {
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Other Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Gradient Animations for elements */
.btn-primary, .nav-cta, .product-icon, .quote-section, 
.contact-info-card, .footer::before, .back-to-top {
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Prevent layout shifts on load */
.fade-in {
    min-height: 1px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.75rem;
    }
    h2 {
        font-size: 2.25rem;
    }
    .hero {
        min-height: 600px;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
    .quote-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .section {
        padding: 4rem 0;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(180deg, var(--light) 0%, rgba(196, 163, 117, 0.02) 100%);
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(196, 163, 117, 0.1);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(196, 163, 117, 0.08);
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(3px);
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .hero-content {
        text-align: center;
    }
    .hero-features {
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .contact-email {
        font-size: 1.2rem;
    }
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.wave {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px -4px 3px rgba(255, 255, 255, 0.05));
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    .quote-text {
        font-size: 2rem;
    }
    .social-links {
        gap: 1rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Cookie Settings Modal Styling */
.cookie-settings-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-settings-content {
    background-color: var(--light);
    margin: 15% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: modalFadeIn 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(196, 163, 117, 0.1);
}

.cookie-settings-header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.5rem;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-settings-close:hover {
    color: var(--primary);
}

.cookie-settings-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 163, 117, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
    padding-right: 1rem;
}

.cookie-option-info h4 {
    margin: 0 0 0.5rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.cookie-option-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + label {
    background-color: var(--primary);
}

.cookie-toggle input:checked + label:before {
    transform: translateX(24px);
}

.cookie-toggle.disabled label {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid rgba(196, 163, 117, 0.1);
    gap: 1rem;
}

.cookie-settings-footer .cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-settings {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.save-settings:hover {
    background-color: rgba(196, 163, 117, 0.1);
}

.accept-all-settings {
    background-color: var(--primary);
    color: white;
}

.accept-all-settings:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(196, 163, 117, 0.2);
}

#openCookieSettings {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

#openCookieSettings:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Cookie-Banner Styling */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    padding: 1rem 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.accept-all {
    background-color: var(--primary);
    color: white;
}

.accept-all:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(196, 163, 117, 0.2);
}

.accept-necessary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.accept-necessary:hover {
    background-color: rgba(196, 163, 117, 0.1);
}

@media (max-width: 768px) {
    .cookie-settings-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-toggle {
        margin-top: 1rem;
    }:root {
        --primary: #C4A375; /* Mittel-Beige */
        --primary-light: #E6D4B8; /* Helles Beige */
        --primary-dark: #A08555; /* Dunkleres Beige */
        --dark: #121212; /* Fast Schwarz */
        --dark-surface: #1E1E1E; /* Dunkelgrau für Oberflächen */
        --light: #FFFFFF; /* Weiß */
        --light-surface: #F8F9FA; /* Sehr helles Grau für Oberflächen */
        --gray: #6C757D; /* Mittelgrau für Text */
        --success: #4CAF50; /* Grün für Erfolgshinweise */
        --warning: #FFC107; /* Gelb für Warnungen */
        --danger: #F44336; /* Rot für Fehler */
        --border-radius: 8px;
        --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: var(--font-main);
        background-color: var(--light);
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    p {
        margin-bottom: 1rem;
    }
    
    a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    a:hover {
        color: var(--primary-dark);
    }
    
    ul {
        list-style: none;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    /* Header Styles */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        transition: var(--transition);
        padding: 1.5rem 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    header.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(196, 163, 117, 0.21);
        padding: 0.75rem 0;
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        transition: transform 0.3s ease;
    }
    
    .logo-footer {
        color: white;
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        transition: transform 0.3s ease;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .logo img {
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    
    .nav-links li a {
        color: var(--dark);
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
    }
    
    .nav-links li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }
    
    .nav-links li a:hover::after,
    .nav-links li a.active::after {
        width: 100%;
    }
    
    .nav-links li a:hover {
        color: var(--primary);
    }
    
    .nav-cta {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: var(--light) !important;
        padding: 0.5rem 1.25rem !important;
        border-radius: var(--border-radius);
        font-weight: 600;
        box-shadow: var(--box-shadow);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    
    .nav-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    .nav-cta:hover::before {
        opacity: 1;
    }
    
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(196, 163, 117, 0.3);
    }
    
    .nav-cta::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--dark);
        margin: 5px 0;
        transition: var(--transition);
    }
    .hero-tagline.typing {
        .typing {
            overflow: hidden;           
            border-right: .15em solid var(--primary); /* Beige Cursor statt Lila */
            white-space: nowrap;
            animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
          }
          
          @keyframes typing {
            from { width: 0 }
            to { width: 100% }
          }
          
          @keyframes blink-caret {
            50% { border-color: transparent; }
          }
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        background: linear-gradient(to bottom, var(--light) 0%, rgba(196, 163, 117, 0.1) 100%);
        overflow: hidden;
        padding-top: 5rem;
    }
    
    .hero-bg-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #F5F5DC;
        z-index: -1;
    }
    
    
    .hero-container {
        position: relative;
        z-index: 1;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--gray);
    }
    
    .highlight {
        color: var(--primary);
        font-weight: 700;
        position: relative;
    }
    
    .highlight::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }
    
    .highlight:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: var(--gray);
    }
    
    .hero-features {
        display: flex;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: transform 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-size: 1.25rem;
        box-shadow: 0 2px 10px rgba(196, 163, 117, 0.3);
        transition: all 0.3s ease;
    }
    
    .feature-icon:hover {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 4px 15px rgba(196, 163, 117, 0.4);
    }
    
    .feature-text {
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .feature-item:hover .feature-text {
        color: var(--primary);
    }
    
    .hero-cta {
        display: flex;
        gap: 1rem;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        transition: var(--transition);
        cursor: pointer;
        border: none;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: var(--light);
        box-shadow: 0 4px 14px rgba(196, 163, 117, 0.3);
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s ease;
    }
    .tagline {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        margin: 1.5rem 0;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.3s ease;
      }
      
      .tagline:hover {
        transform: translateY(-2px);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      }
    .btn-primary:hover::before {
        left: 100%;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(196, 163, 117, 0.4);
        color: var(--light);
    }
    
    .btn-primary:hover i {
        animation: arrowMove 0.5s ease-in-out;
    }
    
    @keyframes arrowMove {
        0% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(5px);
        }
        100% {
            transform: translateX(0);
        }
    }
    
    .btn-secondary {
        background-color: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: 0 2px 10px rgba(196, 163, 117, 0.2);
    }
    
    .btn-secondary:hover {
        background-color: var(--primary);
        color: var(--light);
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(196, 163, 117, 0.3);
    }
    
    .btn-outline {
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        padding: 0.6rem 1.2rem;
    }
    
    .btn-outline:hover {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: var(--light);
        border-color: transparent;
    }
    
    .btn i {
        font-size: 0.9em;
        transition: transform 0.3s ease;
    }
    
    .hero-arrow-container {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        animation: bounce 2s infinite;
    }
    
    .hero-arrow {
        width: 30px;
        height: 30px;
        border-right: 3px solid var(--primary);
        border-bottom: 3px solid var(--primary);
        transform: rotate(45deg);
        box-shadow: 3px 3px 5px rgba(196, 163, 117, 0.2);
        transition: border-color 0.3s ease;
    }
    
    .hero-arrow-container:hover .hero-arrow {
        border-color: var(--primary-dark);
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-20px);
        }
        60% {
            transform: translateY(-10px);
        }
    }
    
    /* Products Section */
    .products-section {
        background-color: var(--light-surface);
        position: relative;
        background: linear-gradient(180deg, var(--light-surface) 0%, rgba(196, 163, 117, 0.05) 100%);
    }
    
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
    }
    
    .section-header h2 {
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-header h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-dark));
        border-radius: 3px;
    }
    
    .section-subheading {
        font-size: 1.25rem;
        color: var(--gray);
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 4rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      
      @media (max-width: 768px) {
        .products-grid {
          max-width: 600px;
        }
      }
    
    .product-card {
        background-color: var(--light);
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--box-shadow);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0;
        transform: translateY(20px);
        display: flex;
        flex-direction: column;
        border: green;
        position: relative;
        overflow: hidden;
    }
    
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #a9dfbf, #2ecc71);
        transition: left 0.5s ease;
    }
    
    .product-card:hover::before {
        left: 0;
    }
    
    .product-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.5);
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        color: var(--light);
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        box-shadow: 0 2px 10px rgba(196, 163, 117, 0.3);
        transition: all 0.4s ease;
    }
    
    .product-card:hover .product-icon {
        transform: translateY(-8px) scale(1.05) rotate(5deg);
        box-shadow: 0 5px 15px rgba(196, 163, 117, 0.4);
      }
    
    .product-card h3 {
        transition: color 0.3s ease;
    }
    
    .product-card:hover h3 {
        color: var(--primary);
    }
    
    .product-features {
        margin: 1.5rem 0;
    }
    
    .product-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        transition: transform 0.3s ease;
    }
    
    .product-features li:hover {
        transform: translateX(5px);
    }
    
    .product-features li i {
        color: var(--primary);
    }
    
    .appstore-btn {
        background: linear-gradient(135deg, var(--dark), #323232);
        color: var(--light);
        padding: 0.6rem 1.5rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .appstore-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary);
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    .appstore-btn:hover::before {
        opacity: 1;
    }
    
    .appstore-btn:hover {
        transform: translateY(-3px);
        color: white;
        box-shadow: 0 6px 15px rgba(196, 163, 117, 0.3);
    }
    
    .appstore-btn i {
        font-size: 1.25rem;
        transition: transform 0.3s ease;
    }
    
    .appstore-btn:hover i {
        transform: scale(1.1);
    }
    
    /* Quote Section */
    .quote-section {
        background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
        color: var(--light);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }
    
    .quote-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
            radial-gradient(circle at 85% 85%, rgba(0, 0, 0, 0.1) 0%, transparent 25%);
        z-index: 0;
    }
    
    .quote-container {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .quote-text {
        font-size: 3rem;
        font-weight: 300;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .quote-container:hover .quote-text {
        transform: scale(1.03);
    }
    
    .quote-text .highlight {
        color: var(--light);
        font-weight: 700;
        position: relative;
    }
    
    .quote-text .highlight::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--light);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        transform: scaleX(1);
    }
    
    .quote-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }
    
    .quote-container:hover .quote-subtitle {
        opacity: 1;
    }
    
    .quote-divider {
        width: 80px;
        height: 4px;
        background-color: var(--light);
        margin: 0 auto 1.5rem;
        opacity: 0.5;
        border-radius: 2px;
        transition: width 0.3s ease, opacity 0.3s ease;
    }
    
    .quote-container:hover .quote-divider {
        width: 120px;
        opacity: 0.8;
    }
    
    .quote-author {
        font-size: 1.25rem;
        font-weight: 600;
        opacity: 0.9;
        transition: transform 0.3s ease;
    }
    
    .quote-container:hover .quote-author {
        transform: translateY(5px);
    }
    
    /* Contact Section */
    .contact-section {
        background-color: var(--light);
        position: relative;
        background: linear-gradient(180deg, var(--light) 0%, rgba(196, 163, 117, 0.1) 100%);
    }
    
    .contact-info-card {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--light);
        border-radius: var(--border-radius);
        padding: 3rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(196, 163, 117, 0.3);
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        transform: translateZ(0);
    }
    
    .contact-info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
            radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 30%);
        z-index: 0;
    }
    
    .contact-info-card > * {
        position: relative;
        z-index: 1;
    }
    
    .contact-info-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-card p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .contact-email {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        display: block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .contact-email::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--light);
        transition: width 0.3s ease;
    }
    
    .contact-email:hover {
        color: var(--light);
        transform: translateY(-3px);
    }
    
    .contact-email:hover::after {
        width: 200px;
    }
    
    .contact-button {
        background: var(--light);
        color: var(--primary);
        padding: 1rem 2.5rem;
        border-radius: var(--border-radius);
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }
    
    .contact-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        transition: left 0.5s ease;
    }
    
    .contact-button:hover::after {
        left: 100%;
    }
    
    .contact-button:hover {
        background: var(--dark);
        color: var(--light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    .contact-button i {
        font-size: 1.25rem;
        transition: transform 0.3s ease;
    }
    
    .contact-button:hover i {
        transform: rotate(15deg) scale(1.2);
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-size: 1.25rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .social-links a:hover {
        background-color: var(--light);
        color: var(--primary);
        transform: translateY(-5px) rotate(360deg);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    
    /* Footer Styles */
    .footer {
        background: linear-gradient(to bottom, var(--dark) 0%, #000000 100%);
        color: var(--light);
        padding: 5rem 0 2rem;
        position: relative;
    }
    
    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 90% 10%, rgba(196, 163, 117, 0.2) 0%, transparent 30%),
            radial-gradient(circle at 10% 90%, rgba(196, 163, 117, 0.1) 0%, transparent 30%);
        z-index: 0;
        opacity: 0.3;
    }
    
    .footer-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-col h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .footer-col h3::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(to right, var(--primary), var(--primary-light));
        border-radius: 1.5px;
        transition: width 0.3s ease;
    }
    
    .footer-col h3:hover::after {
        width: 100%;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--light);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .footer-logo:hover {
        transform: scale(1.05);
    }
    
    .footer-logo img {
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .footer-about p {
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-social {
        display: flex;
        gap: 1rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .footer-links ul li,
    .footer-services ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links ul li a,
    .footer-services ul li a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        position: relative;
        padding-left: 0;
        display: inline-block;
    }
    
    .footer-links ul li a::before,
    .footer-services ul li a::before {
        content: '→';
        position: absolute;
        left: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .footer-links ul li a:hover,
    .footer-services ul li a:hover {
        color: var(--light);
        padding-left: 20px;
    }
    
    .footer-links ul li a:hover::before,
    .footer-services ul li a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }
    
    .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        display: flex;
        margin-bottom: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    .newsletter-form input {
        flex: 1;
        padding: 0.75rem 1rem;
        border: none;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--light);
        outline: none;
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .newsletter-form button {
        padding: 0 1.25rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--light);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-form button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .newsletter-form button:hover::before {
        left: 100%;
    }
    
    .newsletter-form button:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        box-shadow: 0 0 10px rgba(196, 163, 117, 0.5);
    }
    
    .newsletter-form button i {
        transition: transform 0.3s ease;
    }
    
    .newsletter-form button:hover i {
        transform: rotate(15deg);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
    }
    
    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
        color: var(--light);
        text-decoration: underline;
    }
    
    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99;
        box-shadow: 0 4px 15px rgba(196, 163, 117, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 25px rgba(196, 163, 117, 0.4);
    }
    
    .back-to-top i {
        transition: transform 0.3s ease;
    }
    
    .back-to-top:hover i {
        transform: translateY(-3px);
    }
    
    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--dark), #000000);
        color: var(--light);
        padding: 1.5rem 0;
        z-index: 1000;
        display: none;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(100%);
        animation: slideUp 0.5s forwards;
    }
    
    @keyframes slideUp {
        to {
            transform: translateY(0);
        }
    }
    
    .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .cookie-text h3 {
        margin-bottom: 0.5rem;
    }
    
    .cookie-text p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .cookie-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.25rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .accept-all {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--light);
        box-shadow: 0 2px 8px rgba(196, 163, 117, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .accept-all::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .accept-all:hover::after {
        left: 100%;
    }
    
    .accept-all:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(196, 163, 117, 0.4);
    }
    
    .accept-necessary {
        background-color: transparent;
        border: 1px solid var(--light);
        color: var(--light);
        transition: all 0.3s ease;
    }
    
    .accept-necessary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    /* Mobile Menu Active State */
    .mobile-menu-toggle.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hover effects for the overlay */
    .overlay {
        transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    /* Other Animation Keyframes */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    @keyframes gradientAnimation {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    /* Gradient Animations for elements */
    .btn-primary, .nav-cta, .product-icon, .quote-section, 
    .contact-info-card, .footer::before, .back-to-top {
        background-size: 200% 200%;
        animation: gradientAnimation 15s ease infinite;
    }
    
    /* Focus states for accessibility */
    a:focus, button:focus, input:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
    
    /* Prevent layout shifts on load */
    .fade-in {
        min-height: 1px;
    }
    
    /* Responsive Styles */
    @media (max-width: 991px) {
        h1 {
            font-size: 2.75rem;
        }
        h2 {
            font-size: 2.25rem;
        }
        .hero {
            min-height: 600px;
        }
        .hero-features {
            flex-direction: column;
            gap: 1rem;
        }
        .cookie-content {
            flex-direction: column;
            text-align: center;
        }
        .cookie-buttons {
            justify-content: center;
        }
        .quote-text {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        h1 {
            font-size: 2.25rem;
        }
        h2 {
            font-size: 1.75rem;
        }
        .section {
            padding: 4rem 0;
        }
        .mobile-menu-toggle {
            display: block;
        }
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100vh;
            background: linear-gradient(180deg, var(--light) 0%, rgba(196, 163, 117, 0.02) 100%);
            flex-direction: column;
            gap: 0;
            padding: 5rem 2rem 2rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 999;
            box-shadow: -5px 0 15px rgba(196, 163, 117, 0.1);
        }
        .nav-links.active {
            right: 0;
        }
        .nav-links li {
            width: 100%;
        }
        .nav-links li a {
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(196, 163, 117, 0.08);
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(3px);
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .hero-content {
            text-align: center;
        }
        .hero-features {
            justify-content: center;
        }
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-bottom-links {
            justify-content: center;
        }
        .contact-email {
            font-size: 1.2rem;
        }
    }
    
    .wave-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        pointer-events: none;
    }
    
    .wave {
        width: 100%;
        height: auto;
        filter: drop-shadow(0px -4px 3px rgba(255, 255, 255, 0.05));
        transition: transform 0.3s ease;
    }
    
    @media (max-width: 576px) {
        .container {
            padding: 0 1.5rem;
        }
        h1 {
            font-size: 2rem;
        }
        h2 {
            font-size: 1.5rem;
        }
        .hero-cta {
            flex-direction: column;
        }
        .contact-info-card {
            padding: 2rem 1.5rem;
        }
        .quote-text {
            font-size: 2rem;
        }
        .social-links {
            gap: 1rem;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
        }
    }
    
    /* Cookie Settings Modal Styling */
    .cookie-settings-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }
    
    .cookie-settings-content {
        background-color: var(--light);
        margin: 15% auto;
        padding: 0;
        width: 90%;
        max-width: 600px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        animation: modalFadeIn 0.3s ease;
        max-height: 80vh;
        display: flex;
        flex-direction: column;
    }
    
    @keyframes modalFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .cookie-settings-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(196, 163, 117, 0.1);
    }
    
    .cookie-settings-header h3 {
        margin: 0;
        color: var(--dark);
        font-size: 1.5rem;
    }
    
    .cookie-settings-close {
        background: transparent;
        border: none;
        font-size: 1.2rem;
        color: var(--gray);
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .cookie-settings-close:hover {
        color: var(--primary);
    }
    
    .cookie-settings-body {
        padding: 1.5rem;
        overflow-y: auto;
    }
    
    .cookie-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(196, 163, 117, 0.05);
    }
    
    .cookie-option:last-child {
        border-bottom: none;
    }
    
    .cookie-option-info {
        flex: 1;
        padding-right: 1rem;
    }
    
    .cookie-option-info h4 {
        margin: 0 0 0.5rem;
        color: var(--dark);
        font-size: 1.1rem;
    }
    
    .cookie-option-info p {
        margin: 0;
        color: var(--gray);
        font-size: 0.9rem;
    }
    
    .cookie-toggle {
        position: relative;
        width: 50px;
        height: 26px;
    }
    
    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .cookie-toggle label {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }
    
    .cookie-toggle label:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }
    
    .cookie-toggle input:checked + label {
        background-color: var(--primary);
    }
    
    .cookie-toggle input:checked + label:before {
        transform: translateX(24px);
    }
    
    .cookie-toggle.disabled label {
        opacity: 0.7;
        cursor: not-allowed;
    }
    
    .cookie-settings-footer {
        display: flex;
        justify-content: flex-end;
        padding: 1.5rem;
        border-top: 1px solid rgba(196, 163, 117, 0.1);
        gap: 1rem;
    }
    
    .cookie-settings-footer .cookie-btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .save-settings {
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }
    
    .save-settings:hover {
        background-color: rgba(196, 163, 117, 0.1);
    }
    
    .accept-all-settings {
        background-color: var(--primary);
        color: white;
    }
    
    .accept-all-settings:hover {
        background-color: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(196, 163, 117, 0.2);
    }
    
    #openCookieSettings {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }
    
    #openCookieSettings:hover {
        color: var(--primary);
        text-decoration: underline;
    }
    
    /* Cookie-Banner Styling */
    .cookie-banner {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--light);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 9998;
        padding: 1rem 0;
    }
    
    .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .cookie-text {
        flex: 1;
        min-width: 250px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    
    .cookie-text h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        color: var(--dark);
        font-size: 1.2rem;
    }
    
    .cookie-text p {
        margin: 0;
        color: var(--gray);
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .accept-all {
        background-color: var(--primary);
        color: white;
    }
    
    .accept-all:hover {
        background-color: var(--primary-dark);
        box-shadow: 0 4px 12px rgba(196, 163, 117, 0.2);
    }
    
    .accept-necessary {
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }
    
    .accept-necessary:hover {
        background-color: rgba(196, 163, 117, 0.1);
    }
    
    @media (max-width: 768px) {
        .cookie-settings-content {
            margin: 10% auto;
            width: 95%;
        }
        
        .cookie-option {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .cookie-toggle {
            margin-top: 1rem;
        }
        
        .cookie-settings-footer {
            flex-direction: column;
        }
        
        .cookie-settings-footer .cookie-btn {
            width: 100%;
            margin-bottom: 0.5rem;
        }
        
        .cookie-content {
            flex-direction: column;
            align-items: stretch;
        }
        
        .cookie-text {
            margin-right: 0;
        }
        
        .cookie-buttons {
            justify-content: center;
            margin-top: 1rem;
        }
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-footer .cookie-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-text {
        margin-right: 0;
    }
    
    .cookie-buttons {
        justify-content: center;
        margin-top: 1rem;
    }
}