
    /* Hauptcontainer */
    .ab-welpen-container {
        font-family: "Open Sans", Arial, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }

    /* Hero Bereich */
    .ab-hero {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        margin-bottom: 50px;
        background: linear-gradient(135deg, #f9f9ff 0%, #eef2f5 100%);
        padding: 30px;
        border-radius: 15px;
    }

    .ab-hero-content {
        flex: 1;
        min-width: 300px;
    }

    .ab-hero h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .ab-subtitle {
        font-size: 1.2rem;
        color: #7f8c8d;
        margin-bottom: 25px;
    }

    .ab-hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .ab-hero-image {
        flex: 1;
        min-width: 300px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

    .ab-hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ab-certified-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: #27ae60;
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: bold;
    }

    /* Buttons */
    .ab-button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
    }

    .ab-button.primary {
        background-color: #3498db;
        color: white;
        border: 2px solid #3498db;
    }

    .ab-button.secondary {
        background-color: transparent;
        color: #3498db;
        border: 2px solid #3498db;
    }

    .ab-button.small {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .ab-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Über uns Bereich */
    .ab-about {
        background: white;
        padding: 40px;
        border-radius: 15px;
        margin-bottom: 50px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    }

    .ab-about h2 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .ab-about p {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

    .ab-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .ab-feature {
        flex: 1;
        min-width: 250px;
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
    }

    .ab-feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #3498db;
    }

    .ab-feature h3 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .ab-about-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Welpen Grid */
    .ab-puppies {
        margin-bottom: 50px;
    }

    .ab-puppies h2 {
        text-align: center;
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .ab-filters {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    #ab-filter-form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        max-width: 800px;
        width: 100%;
    }

    #ab-filter {
        flex: 1;
        min-width: 200px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 30px;
        font-size: 1rem;
    }

    .ab-puppies-grid-inner {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .ab-puppy-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .ab-puppy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .ab-puppy-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .ab-puppy-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .ab-puppy-card:hover .ab-puppy-image img {
        transform: scale(1.05);
    }

    .ab-puppy-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #27ae60;
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .ab-puppy-details {
        padding: 20px;
    }

    .ab-puppy-details h3 {
        margin: 0 0 10px;
        color: #2c3e50;
        font-size: 1.3rem;
    }

    .ab-puppy-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #7f8c8d;
    }

    .ab-puppy-price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #e74c3c;
        margin-bottom: 15px;
    }

    .ab-puppy-actions {
        display: flex;
        gap: 10px;
    }

    .ab-no-puppies {
        text-align: center;
        padding: 40px;
        background: #f8f9fa;
        border-radius: 10px;
    }

    /* Garantiebereich */
    .ab-guarantees {
        margin-bottom: 50px;
    }

    .ab-guarantees h2 {
        text-align: center;
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .ab-guarantee-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .ab-guarantee-card {
        flex: 1;
        min-width: 300px;
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .ab-guarantee-card h3 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ab-icon {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .ab-testimonials {
        background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
        padding: 40px;
        border-radius: 15px;
        margin-bottom: 50px;
        color: white;
        text-align: center;
    }

    .ab-testimonials h2 {
        margin-top: 0;
        font-size: 2rem;
    }

    .ab-testimonial {
        max-width: 800px;
        margin: 0 auto 30px;
        font-size: 1.2rem;
        font-style: italic;
    }

    .ab-testimonial-author {
        font-weight: bold;
        font-style: normal;
        margin-top: 15px;
    }

    /* FAQ & Kontakt */
    .ab-faq-contact {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 50px;
    }

    .ab-faq, .ab-contact {
        flex: 1;
        min-width: 300px;
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        text-align: center;
    }

    .ab-faq h3, .ab-contact h3 {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .ab-hero h1 {
            font-size: 2rem;
        }
        
        .ab-hero, .ab-about-buttons, #ab-filter-form {
            flex-direction: column;
        }
        
        #ab-filter, .ab-button {
            width: 100%;
        }
    }
    