/* ===================================
   NEUER HERO-ABSCHNITT
   =================================== */

.hero-new {
    min-height: 65vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-lg);
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide-active {
    opacity: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-wrapper {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 100%;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 100%;
    text-align: center;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
}

.btn-hero:active {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-text-wrapper {
        padding: 40px;
    }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ===================================
   WER WIR SIND SECTION
   =================================== */

.about-section {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
    border-radius: 2px;
}

.about-description p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #bdc3c7;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    opacity: 0.3;
}

.placeholder-text {
    font-size: 1rem;
    color: #7f8c8d;
    text-align: center;
    font-weight: 500;
    z-index: 1;
    position: relative;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-box {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db 0%, #9b59b6 100%);
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.stats-box.counter-animated .stats-number {
    animation: counterPulse 0.6s ease-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.stats-divider {
    width: 50px;
    height: 2px;
    background: #bdc3c7;
    margin: 0 auto 20px auto;
    border-radius: 1px;
}

.stats-text {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
}

.stats-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    border: none;
    cursor: pointer;
}

.stats-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

/* ===================================
   RESPONSIVE DESIGN - ABOUT SECTION
   =================================== */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        order: -1;
    }
    
    .stats-box {
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Hero-Bereich für mobile Geräte anpassen */
    .hero-new {
        min-height: 50vh;
        padding: var(--spacing-md);
    }

    .hero-text-wrapper {
        padding: 20px 25px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    
    /* Text und Button im Hero-Bereich ausblenden (nur mobile) */
    .hero-content p {
        display: none;
    }

    .btn-hero {
        display: none;
    }

    .about-section {
        padding: 30px 0 60px 0;
    }
    
    /* Fade-in-up Effekt für About-Section in mobiler Ansicht deaktivieren */
    .about-section .animate-on-scroll {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    
    .about-content {
        gap: 30px;
        padding: 0 var(--spacing-md);
    }
    
    /* Bild im Wer wir sind Bereich ausblenden */
    .about-image {
        display: none;
    }
    
    /* Reihenfolge der Elemente für mobile Ansicht */
    .about-text {
        order: 1;
    }
    
    .about-stats {
        order: 2;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-text {
        font-size: 0.95rem;
    }
    
    .about-image img {
        height: 380px;
        max-width: 300px;
    }
    
    .stats-box {
        height: 300px;
    }
    
    .about-description p {
        text-align: left;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-more {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #bdc3c7;
}

.service-card-more:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #95a5a6;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 2;
    color: #2c3e50;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #5a6c7d;
    position: relative;
    z-index: 2;
}

/* ===================================
   MODAL STYLING
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 30px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.modal-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    color: white;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffcc00;
}

.modal-body {
    padding: 40px 30px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.modal-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.modal-details-list li {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 35px;
}

.modal-details-list li::before {
    content: "✓";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 12px;
}

/* ===================================
   RESPONSIVE DESIGN - SERVICES
   =================================== */

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-details-list {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   WARUM WIR SECTION
   =================================== */

.why-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.why-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
    border-radius: 2px;
}

.why-description p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.why-description p:last-child {
    margin-bottom: 0;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RESPONSIVE DESIGN - WHY SECTION
   =================================== */

@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-title {
        font-size: 2.2rem;
    }
    
    .why-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 40px 0;
    }
    
    .why-content {
        gap: 40px;
        padding: 0 1rem;
    }
    
    .why-subtitle {
        font-size: 0.9rem;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .why-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .why-image img {
        height: 300px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    align-items: start;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f2ff;
    border-radius: 50%;
    border: 2px solid #0066cc;
    position: relative;
}

.faq-icon::before {
    content: '+';
    position: absolute;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-color: #0066cc;
}

.faq-item.active .faq-icon::before {
    content: '×';
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px 30px;
    opacity: 1;
}

.faq-answer p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN - FAQ SECTION
   =================================== */

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .faq-subtitle {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ===================================
   GUTSCHEIN SECTION
   =================================== */

.gutschein-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    position: relative;
    overflow: hidden;
}

.gutschein-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.gutschein-content:hover .gutschein-icon img {
    transform: rotate(20deg);
}

.gutschein-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gutschein-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.gutschein-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

.gutschein-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    text-align: center;
    max-width: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gutschein-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.gutschein-button:active {
    transform: translateY(0);
}

.gutschein-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gutschein-icon img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease;
}

/* ===================================
   RESPONSIVE DESIGN - GUTSCHEIN SECTION
   =================================== */

@media (max-width: 1024px) {
    .gutschein-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gutschein-title {
        font-size: 2.2rem;
    }
    
    .gutschein-button {
        margin: 0 auto;
    }
    
    .gutschein-icon {
        order: -1;
    }
}

@media (max-width: 768px) {
    .gutschein-section {
        padding: 40px 0;
    }
    
    .gutschein-content {
        gap: 30px;
        padding: 0 1rem;
    }
    
    .gutschein-title {
        font-size: 1.8rem;
    }
    
    .gutschein-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .gutschein-icon img {
        max-width: 200px;
    }
}


