
    /* Grundlegendes Design */
    .monkey-adoption-page {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: #3e4a3b;
        line-height: 1.8;
    }
    
    /* Kopfbereich mit herzlicher Begrüßung */
    .adoption-header {
        background: linear-gradient(rgba(58, 101, 73, 0.85), rgba(58, 101, 73, 0.85)), url("https://source.unsplash.com/random/1200x800/?jungle,monkey") center/cover no-repeat;
        border-radius: 15px;
        padding: 80px 30px;
        margin-bottom: 50px;
        text-align: center;
        color: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }
    
    .adoption-header:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 10px;
        background: linear-gradient(90deg, #d8a47f, #4a7c59, #d8a47f);
    }
    
    .adoption-header h1 {
        font-size: 3.2rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        font-weight: 700;
    }
    
    .subtitle {
        font-size: 1.4rem;
        max-width: 800px;
        margin: 0 auto 40px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }
    
    .header-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        background: #d8a47f;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }
    
    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        background: #c9865b;
    }
    
    .btn i {
        margin-right: 10px;
    }
    
    /* Inhaltsbereiche */
    section {
        margin: 70px 0;
        padding: 20px;
    }
    
    h2 {
        color: #4a7c59;
        font-size: 2.3rem;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    h2 i {
        color: #d8a47f;
    }
    
    h3 {
        color: #4a7c59;
        font-size: 1.8rem;
        margin: 25px 0 15px;
    }
    
    /* Wertvorstellungen */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .value-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid #e8f0e5;
    }
    
    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .value-card i {
        font-size: 3.5rem;
        color: #d8a47f;
        margin-bottom: 20px;
    }
    
    /* Einrichtung */
    .facility-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }
    
    .gallery-item {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    
    .gallery-img {
        height: 250px;
        background-size: cover;
        background-position: center;
    }
    
    .gallery-item p {
        padding: 20px;
        background: white;
        margin: 0;
        text-align: center;
        font-weight: 500;
    }
    
    .facility-description {
        background: #f5f9f4;
        border-radius: 15px;
        padding: 30px;
        margin-top: 40px;
    }
    
    .facility-description ul {
        list-style: none;
        padding: 0;
    }
    
    .facility-description li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
    }
    
    .facility-description li i {
        color: #4a7c59;
    }
    
    /* Familienmitglieder */
    .family-intro {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 40px;
        text-align: center;
        font-style: italic;
        color: #5a6c55;
    }
    
    .adoption-family-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
    
    .family-member-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
    }
    
    .family-member-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .member-image-container {
        position: relative;
        height: 280px;
        overflow: hidden;
    }
    
    .family-member-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .family-member-card:hover img {
        transform: scale(1.05);
    }
    
    .availability-badge {
        position: absolute;
        top: 20px;
        left: -35px;
        padding: 10px 40px;
        color: white;
        font-weight: bold;
        text-align: center;
        transform: rotate(-45deg);
        font-size: 0.9rem;
        z-index: 10;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        letter-spacing: 1px;
    }
    
    .in-stock {
        background: #4a7c59;
    }
    
    .out-of-stock {
        background: #a0a0a0;
    }
    
    .on-backorder {
        background: #d8a47f;
    }
    
    .member-info {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .member-info h3 {
        margin: 0 0 15px;
        color: #3e4a3b;
        font-size: 1.6rem;
    }
    
    .member-traits {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .trait {
        background: #f0f7f2;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .trait i {
        color: #d8a47f;
    }
    
    .adoption-button {
        display: block;
        background: #4a7c59;
        color: white;
        text-align: center;
        padding: 15px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
        margin-top: auto;
    }
    
    .adoption-button:hover {
        background: #3a6549;
        transform: translateY(-3px);
    }
    
    /* Adoptionsprozess */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    
    .step {
        background: white;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        position: relative;
        border-top: 4px solid #d8a47f;
    }
    
    .step-number {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: #4a7c59;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Zitat */
    .testimonial-section {
        background: #f5f9f4;
        border-radius: 15px;
        padding: 50px;
        margin: 60px 0;
        text-align: center;
    }
    
    blockquote {
        font-size: 1.3rem;
        font-style: italic;
        color: #5a6c55;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }
    
    blockquote:before, blockquote:after {
        content: """;
        font-size: 4rem;
        color: #d8a47f;
        opacity: 0.3;
        position: absolute;
    }
    
    blockquote:before {
        top: -30px;
        left: -40px;
    }
    
    blockquote:after {
        bottom: -60px;
        right: -40px;
    }
    
    cite {
        display: block;
        margin-top: 25px;
        font-style: normal;
        font-weight: 600;
        color: #4a7c59;
    }
    
    /* Policy Buttons */
    .policy-section {
        background: linear-gradient(to right, #4a7c59, #5d946e);
        border-radius: 15px;
        padding: 50px 30px;
        margin: 60px 0;
        text-align: center;
        color: white;
    }
    
    .policy-section h3 {
        color: white;
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .policy-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .policy-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.15);
        color: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .policy-btn:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-5px);
    }
    
    .policy-btn i {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    /* Gebetsbereich */
    .prayer-section {
        background: linear-gradient(rgba(74, 124, 89, 0.9), rgba(74, 124, 89, 0.9)), url("https://source.unsplash.com/random/1200x400/?forest,light") center/cover;
        border-radius: 15px;
        padding: 70px 30px;
        text-align: center;
        color: white;
        margin: 60px 0 30px;
    }
    
    .prayer-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .prayer-content i {
        font-size: 4rem;
        margin-bottom: 30px;
        opacity: 0.8;
    }
    
    .prayer-content h3 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: white;
    }
    
    .prayer-content p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .adoption-header h1 {
            font-size: 2.5rem;
        }
        
        .header-buttons {
            flex-direction: column;
        }
        
        .btn {
            width: 100%;
            justify-content: center;
        }
        
        .detail-card {
            flex-direction: column;
        }
        
        .detail-image {
            height: 300px;
        }
    }
    