
:root {
    --highlight-color: #897F66;
    --text-color: #595959;
    --line-height: 28px;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
}

.details-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 75px;
    padding-bottom: 75px;
    width: 100%;
    margin:auto;
}

.btt {
    padding-top:55px;
    text-align: center;

}

.image-gallery-container {
    margin-top: 85px;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-image {
    width: 272px;
    height: 272px;
    object-fit: cover;
    border-radius: 12px;
}

.farm-header {
    display: flex;
    align-items: flex-start;
    gap: 65px;
    padding-left: 80px;
    padding-right: 80px;
    margin-right: 80px;
    margin-bottom: 65px;
    position: relative;
}

.farm-logo {
    width: 187px;
    height: 187px;
    border-radius: 10px;
    object-fit: scale-down;
}

.farm-info {
    flex-grow: 1;
}

.farm-name {
    font-family: 'Arial', serif;
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin: 0;
}

.farm-contact p {
    margin: 0.5rem 0;
    font-size: 18px;
    line-height: var(--line-height);
}

.bio-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
}

.details-section {
    margin-bottom: 2rem;
    padding-left: 80px;
    padding-right: 80px;
}

.details-section h3 {
    font-family: 'Arial', serif;
    font-size: 1.5rem;
    color: var(--highlight-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.details-section p, .details-section ul {
    font-size: 16px;
    line-height: var(--line-height);
}

.product-list {
    list-style-type: none;
    padding: 0;
}

.product-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5rem;
}

.product-list li:before {
    content: '\2713'; /* Unicode checkmark */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #007336 !important;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mitgliederliste-header {
        padding: 1rem;
    }

    .mitgliederliste-title {
        font-size: 1.2rem;
    }

    .search-logo {
        height: 40px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .farm-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .farm-logo {
        width: 120px;
        height: 120px;
    }

    .farm-name {
        font-size: 2rem;
    }
}