/* Spezifisches CSS für Geburtsdatum-Formular */
.birthdate-form-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only - für Barrierefreiheit */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Birthdate form wrapper positioning */
.birthdate-form-wrapper {
    position: relative;
}

/* Layout für Desktop und Mobil */
.birthdate-form-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.birthdate-form-container {
    background-color: #cbf0d9;
    border-radius: 6px; /* Halbe Rundung */
    padding: 16px; /* Verringertes Padding */
    width: 100%;
    max-width: calc(100vw - 40px); /* Maximale Breite verhindert Überlauf */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    border: 2px solid #88d6c2; /* Hellere, weniger auffällige grüne Farbe */
    outline: none;
    box-sizing: border-box;
}

/* Titel-Stile */
.birthdate-form-title {
    color: #2e7d32;
    font-size: 14px; /* Kleinere Schriftgröße */
    font-weight: 500;
    margin-bottom: 4px;
    text-align: left;
    line-height: 1.4;
    border: none;
    background: none;
    padding: 0;
}

/* Desktop-Titel außerhalb der Box in grau */
.birthdate-form-desktop-title {
    display: none; /* In Media Query unten auf block gesetzt */
    color: #666; /* Graue Schrift */
    margin-bottom: 8px; /* Näher an der Box */
    margin-left: 10px; /* Einrückung nach rechts */
    font-size: 15px; /* Noch kleinere Schriftgröße für Desktop-Titel */
}

/* Mobile-Titel innerhalb der Box in grau */
.birthdate-form-mobile-title {
    display: block; /* In Media Query unten auf none gesetzt */
    color: #666; /* Graue Schrift für mobile Variante */
}

.birthdate-form-inputs {
    display: flex;
    gap: 8px; /* Kleinere Abstände zwischen Eingabefeldern */
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.birthdate-form-input-group {
    flex: 1;
    position: relative;
    margin: 0;
}

.birthdate-form-input-group.birthdate-form-year-input {
    flex: 1.5;
}

.birthdate-form-date-input {
    width: 100% !important;
    height: 56px;
    border: 2px solid #e0e0e0;
    border-radius: 4px; /* Halbe Rundung */
    background-color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #333; /* Dunkles Grau für bessere Lesbarkeit */
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
    padding: 0 8px;
    font-family: inherit;
    line-height: normal;
    vertical-align: baseline;
    box-shadow: none;
    box-sizing: border-box;
}

.birthdate-form-date-input::-webkit-outer-spin-button,
.birthdate-form-date-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Platzhaltertext-Styling */
.birthdate-form-date-input::placeholder {
    color: #999;
    opacity: 1;
}
.birthdate-form-date-input::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}
.birthdate-form-date-input::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.birthdate-form-date-input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.birthdate-form-date-input:focus {
    border-color: #26a69a;
    box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.25);
    outline: none;
    background-color: #fafafa;
}

.birthdate-form-date-input.birthdate-form-error {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.15);
}

.birthdate-form-date-input.birthdate-form-valid {
    border-color: #4caf50;
}

.birthdate-form-submit-button {
    width: 100%;
    height: 56px;
    background-color: #26a69a;
    color: white;
    border: none;
    border-radius: 4px; /* Halbe Rundung */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: none;
    margin: 0;
    padding: 0;
    font-family: inherit;
    line-height: normal;
    vertical-align: baseline;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
    /* Link-spezifische Styles für identisches Aussehen */
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.birthdate-form-submit-button:hover:not(:disabled) {
    background-color: #00897b;
}

.birthdate-form-submit-button:disabled {
    background-color: #b0bec5;
    cursor: not-allowed;
}

.birthdate-form-error-message {
    color: #f44336;
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: -6px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    line-height: 1.3;
    font-weight: normal;
    background: none;
    border: none;
    padding: 0;
}

.birthdate-form-error-message.birthdate-form-show {
    opacity: 1;
}

/* Medium Screen Optimierung (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .birthdate-form-wrapper {
        max-width: 665px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .birthdate-form-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .birthdate-form-inputs-container {
        flex: 1;
    }

    .birthdate-form-submit-button {
        width: 250px;
        min-width: 200px;
        align-self: flex-end;
    }

    .birthdate-form-desktop-title {
        display: block;
    }

    .birthdate-form-mobile-title {
        display: none;
    }
}

/* Desktop-Optimierung: Button neben den Eingabefeldern (ab 1201px) */
@media (min-width: 1201px) {
    .birthdate-form-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px; /* Reduzierter Abstand zwischen Button und Eingabefeldern in Desktop */
    }

    .birthdate-form-inputs-container {
        flex: 1;
    }

    .birthdate-form-submit-button {
        width: 280px; /* Breiterer Button */
        min-width: 200px;
        align-self: flex-end;
    }

    .birthdate-form-desktop-title {
        display: block;
    }

    .birthdate-form-mobile-title {
        display: none;
    }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .birthdate-form-container {
        padding: 10px 8px; /* Noch kompakteres Padding */
        /*margin: 0 10px;*/
        border-radius: 6px; /* Kleinere Rundung für eleganteres Aussehen */
        max-width: calc(100vw - 20px); /* Verhindert Überlauf auf mobil */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Subtilerer Schatten */
    }

    .birthdate-form-title {
        font-size: 14px; /* Noch kleinere Schriftgröße */
        text-align: left;
        margin-bottom: 6px; /* Kleinerer Abstand */
        font-weight: 500;
    }

    .birthdate-form-inputs {
        gap: 5px; /* Noch kleinere Abstände zwischen Eingabefeldern */
        margin-bottom: 8px; /* Weiter reduzierter Abstand zum Button */
    }

    .birthdate-form-date-input {
        height: 48px; /* Deutlich kleinere Höhe */
        font-size: 17px; /* Kleinere Schriftgröße */
        border-radius: 4px; /* Kleinere Rundung */
        width: 100% !important;
        border: 1.5px solid #e0e0e0; /* Dünnerer Rahmen */
        padding: 0 6px; /* Weniger Padding */
    }

    .birthdate-form-submit-button {
        height: 48px; /* Gleiche Höhe wie Eingabefelder */
        font-size: 16px; /* Kleinere Schriftgröße */
        border-radius: 4px; /* Kleinere Rundung */
        font-weight: 500; /* Leichtere Schriftgewichtung */
        padding: 0 16px;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 360px) {
    .birthdate-form-container {
        margin: 0 5px;
        max-width: calc(100vw - 10px); /* Noch weniger Margin für sehr kleine Screens */
        padding: 8px 6px; /* Noch kompakteres Padding für sehr kleine Screens */
    }
    
    .birthdate-form-inputs {
        gap: 4px; /* Noch kleinere Abstände */
    }
    
    .birthdate-form-date-input {
        height: 44px; /* Noch etwas kleiner für sehr kleine Screens */
        font-size: 16px; /* Leicht reduzierte Schriftgröße */
        padding: 0 4px; /* Minimales Padding */
    }
    
    .birthdate-form-submit-button {
        height: 44px; /* Gleiche Höhe wie Eingabefelder */
        font-size: 15px; /* Angepasste Schriftgröße */
        padding: 0 12px;
    }
    
    .birthdate-form-title {
        font-size: 13px; /* Noch kleinere Schriftgröße */
        margin-bottom: 5px;
    }
}
/* Main container for trust elements */
.trust-element-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

/* Main wrapper for side-by-side layout */
.trust-element-main-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

/* Google Reviews Wrapper */
.trust-element-review-wrapper {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 30px;
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 480px;
    box-sizing: border-box;
    position: relative;
    min-height: 120px;
}

.trust-element-review-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Google section styling */
.trust-element-google-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.trust-element-rating-header {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.trust-element-google-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.trust-element-google-logo svg {
    width: 100%;
    height: 100%;
}

.trust-element-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.trust-element-star {
    color: #fbbc04;
    font-size: 20px;
}

/* Review content styling */
.trust-element-review-content {
    flex: 1;
    padding-left: 30px;
    border-left: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    position: relative;
}

.trust-element-review-text {
    font-size: 18px;
    color: #202124;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
}

.trust-element-reviewer-name {
    font-size: 16px;
    color: #5f6368;
    font-weight: 400;
}

/* Badge section styling */
.trust-element-badge-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Badge wrapper styling */
.trust-element-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-element-badge-wrapper svg {
    width: 100px;
    height: 120px;
}

/* Info text styling - smaller and refined */
.trust-element-info-text {
    font-size: 12px;
    color: #5f6368;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Animation für Textwechsel */
@keyframes trustElementFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-element-fade-in {
    animation: trustElementFadeIn 0.5s ease-in-out;
}

/* Tablet styles (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .trust-element-container {
        padding: 0 20px;
    }
    
    .trust-element-main-wrapper {
        gap: 20px;
    }
    
    .trust-element-review-wrapper {
        padding: 18px 25px;
    }
    
    .trust-element-google-logo {
        width: 50px;
        height: 50px;
    }
    
    .trust-element-star {
        font-size: 18px;
    }
    
    .trust-element-review-text {
        font-size: 16px;
    }
}

/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
    .trust-element-container {
        gap: 15px;
        padding: 0 ;
    }
    
    /* Stack elements vertically on mobile */
    .trust-element-main-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Google reviews wrapper adjustments */
    .trust-element-review-wrapper {
        padding: 0;
        gap: 20px;
        width: 100%;
    }
    
    /* Compact Google section on mobile */
    .trust-element-google-section {
        min-width: 80px;
        padding: 15px;
    }
    
    .trust-element-google-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .trust-element-rating-header {
        font-size: 13px;
    }
    
    .trust-element-star {
        font-size: 16px;
    }
    
    /* Adjust review content for mobile */
    .trust-element-review-content {
        padding: 15px;
        padding-left: 20px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
    
    .trust-element-review-text {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .trust-element-reviewer-name {
        font-size: 14px;
    }
    
    /* Hide info text on mobile to save space */
    .trust-element-info-text {
        display: none;
    }
    
    /* Adjust badge size for mobile */
    .trust-element-badge-wrapper svg {
        width: 85px;
        height: 102px;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .trust-element-review-wrapper {
        padding: 0;
        gap: 15px;
    }
    
    .trust-element-google-logo {
        width: 40px;
        height: 40px;
    }
    
    .trust-element-rating-header {
        font-size: 12px;
    }
    
    .trust-element-star {
        font-size: 14px;
        gap: 1px;
    }
    
    .trust-element-review-content {
        padding-left: 15px;
    }
    
    .trust-element-review-text {
        font-size: 14px;
    }
    
    .trust-element-reviewer-name {
        font-size: 13px;
    }
}

/* Very small mobile (max-width: 360px) */
@media (max-width: 360px) {
    .trust-element-container {
        gap: 12px;
        padding: 0 ;
    }
    
    .trust-element-review-wrapper {
        padding: 0;
        gap: 12px;
    }
    
    .trust-element-badge-wrapper svg {
        width: 75px;
        height: 90px;
    }
}

/* Compact version for sticky header - keeping this for backward compatibility */
.trust-element-review-container {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.trust-element-review-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.trust-element-review-container.trust-element-compact {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 14px;
    max-width: none;
    width: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    flex-direction: row;
}

.trust-element-review-container.trust-element-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.trust-element-review-container.trust-element-compact .trust-element-google-section {
    display: none;
}

.trust-element-review-container.trust-element-compact .trust-element-review-content {
    display: none;
}

.trust-element-compact .trust-element-rating-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-right: 8px;
}

.trust-element-compact .trust-element-rating-number {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.trust-element-compact .trust-element-rating-suffix {
    font-size: 14px;
    font-weight: 400;
    color: #5f6368;
    line-height: 1;
}

.trust-element-compact .trust-element-google-logo {
    width: 32px;
    height: 32px;
    margin: 0 4px;
    flex-shrink: 0;
}

.trust-element-compact .trust-element-stars {
    display: flex;
    gap: 1px;
    margin: 0;
}

.trust-element-compact .trust-element-star {
    color: #fbbc04;
    font-size: 26px;
    line-height: 1;
}

/* Google Step Indicator - positioned at bottom of review content */
.trust-element-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 5px;
}

.trust-element-step-container {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.trust-element-step {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.6;
}

/* Google colors for each step */
.trust-element-step-1.active { background-color: #4285F4; } /* Blue */
.trust-element-step-2.active { background-color: #EA4335; } /* Red */
.trust-element-step-3.active { background-color: #FBBC05; } /* Yellow */
.trust-element-step-4.active { background-color: #34A853; } /* Green */
.trust-element-step-5.active { background-color: #4285F4; } /* Blue */
.trust-element-step-6.active { background-color: #EA4335; } /* Red */
.trust-element-step-7.active { background-color: #FBBC05; } /* Yellow */
.trust-element-step-8.active { background-color: #34A853; } /* Green */

.trust-element-step.active {
    width: 8px;
    height: 8px;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Animation for step transition */
.trust-element-step.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0;
    animation: stepPulse 0.6s ease-out;
}

@keyframes stepPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Remove step label as requested */
.trust-element-step-label {
    display: none;
}

/* Responsive adjustments for step indicator */
@media (max-width: 768px) {
    .trust-element-step-indicator {
        padding-top: 12px;
    }
    
    .trust-element-step-container {
        gap: 5px;
    }
    
    .trust-element-step {
        width: 5px;
        height: 5px;
    }
    
    .trust-element-step.active {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .trust-element-step-indicator {
        padding-top: 10px;
    }
    
    .trust-element-step-container {
        gap: 4px;
    }
}
/* Bleaching Page Specific Styles */

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

.full-size {
    overflow-x: hidden;
}

/* Bleaching Image Container */
.bleaching-image-container {
    text-align: center;
    margin: 4rem auto;
    padding: 2rem 0;
    max-width: 100%;
    overflow: hidden;
}

/* Bleaching Images */
.bleaching-image {
    max-width: 60%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Hover effect for desktop */
.bleaching-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Tablet styles */
@media (max-width: 768px) {
    .bleaching-image-container {
        margin: 3rem auto;
        padding: 1.5rem 0;
    }
    
    .bleaching-image {
        max-width: 80%;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .bleaching-image-container {
        margin: 2rem auto;
        padding: 1rem 0;
    }
    
    .bleaching-image {
        max-width: 95%;
        border-radius: 8px;
    }
}

/* Small mobile styles */
@media (max-width: 360px) {
    .bleaching-image-container {
        margin: 1.5rem auto;
        padding: 0.75rem 0;
    }
    
    .bleaching-image {
        max-width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Fix für mobile Grid und Card Überlappungen */
@media (max-width: 768px) {
    /* Grid-2 untereinander auf Mobile */
    .comparison-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }
    
    /* Grid-3 untereinander auf Mobile */
    .comparison-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }
    
    /* Card Überlappungen beheben */
    .comparison-card {
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Card Content Spacing */
    .comparison-card-content {
        padding: 0.5rem 0 !important;
    }
    
    /* Reimbursement Display anpassen */
    .comparison-reimbursement-display {
        padding: 1rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .comparison-reimbursement-amount {
        font-size: 1.5rem !important;
    }
    
    /* Benefits List anpassen */
    .comparison-benefits-list {
        margin: 0.5rem 0 !important;
    }
    
    .comparison-benefits-list li {
        padding: 0.4rem 0 0.4rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Card Action Button */
    .comparison-card-action-button {
        margin: 15px auto 5px auto !important;
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
    }
}

/* Noch kleinere Screens */
@media (max-width: 480px) {
    .comparison-card {
        padding: 1rem !important;
    }
    
    .comparison-card-title {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .comparison-reimbursement-label {
        font-size: 0.75rem !important;
    }
    
    .comparison-benefits-list li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}

/* Ensure tables don't cause horizontal scroll */
.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}

.comparison-table {
    min-width: 600px;
}

/* Ensure all containers respect viewport width */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix any potential grid overflow issues */
.comparison-grid-2,
.comparison-grid-3,
.comparison-card {
    max-width: 100%;
    box-sizing: border-box;
}

/* Creative Image Integration Styles */
/* 
Usage Examples:

1. Image with side text:
<div class="bleaching-image-with-text">
    <div class="image-wrapper">
        <img src="..." alt="..." class="bleaching-image">
    </div>
    <div class="text-content">
        <h3>Professionelles Bleaching</h3>
        <p>Ihre Vorteile auf einen Blick...</p>
    </div>
</div>

2. Floating image with caption:
<div class="bleaching-image-floating">
    <div class="image-wrapper">
        <img src="..." alt="..." class="bleaching-image">
        <div class="image-caption">
            <h4>Strahlendes Lächeln</h4>
            <p>In nur 90 Minuten zu weißeren Zähnen</p>
        </div>
    </div>
</div>

3. Decorative frame:
<div class="bleaching-image-decorated">
    <div class="image-wrapper">
        <img src="..." alt="..." class="bleaching-image">
    </div>
</div>
*/

/* Style 1: Image with side text */
.bleaching-image-with-text {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
}

.bleaching-image-with-text.reverse {
    flex-direction: row-reverse;
}

.bleaching-image-with-text .image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bleaching-image-with-text .image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(36, 178, 165, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bleaching-image-with-text .text-content {
    flex: 1;
    padding: 2rem;
}

.bleaching-image-with-text .text-content h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.bleaching-image-with-text .text-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 2px;
}

/* Style 2: Floating image with caption */
.bleaching-image-floating {
    position: relative;
    margin: 3rem auto;
    max-width: 80%;
    text-align: center;
}

.bleaching-image-floating .image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(36, 178, 165, 0.1);
    transition: transform 0.3s ease;
}

.bleaching-image-floating .image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(36, 178, 165, 0.2);
}

.bleaching-image-floating .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bleaching-image-floating:hover .image-caption {
    opacity: 1;
}

/* Style 3: Grid gallery */
.bleaching-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bleaching-image-grid .grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bleaching-image-grid .grid-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Style 4: Decorative frame */
.bleaching-image-decorated {
    position: relative;
    margin: 4rem auto;
    max-width: 70%;
    padding: 2rem;
}

.bleaching-image-decorated::before,
.bleaching-image-decorated::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(36, 178, 165, 0.3);
}

.bleaching-image-decorated::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 16px 0 0 0;
}

.bleaching-image-decorated::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 16px 0;
}

.bleaching-image-decorated .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bleaching-image-with-text {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .bleaching-image-with-text .text-content {
        padding: 1rem;
        text-align: center;
    }
    
    .bleaching-image-with-text .text-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bleaching-image-floating {
        max-width: 95%;
    }
    
    .bleaching-image-decorated {
        max-width: 90%;
        padding: 1rem;
    }
    
    .bleaching-image-decorated::before,
    .bleaching-image-decorated::after {
        width: 50px;
        height: 50px;
    }
}