/* Apotheken Bewertungen Styling */
.pharmacy-reviews-container {
    padding: 0;
    text-align: center;
    margin: 20px 0;
}

.reviews-count h3,
.trees-section h3 {
    color: #2c5530;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.count-display,
.trees-display {
    display: inline-block;
    min-width: 200px;
}

.count-number,
.trees-number {
    display: block;
	font-family: 'Tajawal', Helvetica, Arial, Lucida, sans-serif;
    font-size: 70px;
    font-weight: bold;
    color: #71b100 !important;
    line-height: 1;
}

.count-label,
.trees-label {
    display: block;
    font-size: 18px;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trees-section {
    margin-top: 40px;
    border-top: 2px solid #e0e0e0;
    padding-top: 30px;
}

.tree-icon {
    font-size: 40px;
    margin-top: 15px;
    animation: treeGrow 2s ease-in-out infinite alternate;
}

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

.reviews-count p,
.trees-section p {
    font-size: 18px;
    color: #555;
    margin: 15px 0;
}

.last-updated {
    margin-top: 30px;
    font-size: 14px;
    color: #888;
    font-style: italic;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pharmacy-reviews-container {
        padding: 20px;
    }
    
    .count-number,
    .trees-number {
        font-size: 70px;
    }
    
    .reviews-count h3,
    .trees-section h3 {
        font-size: 20px;
    }
}

/* Animation für Zahlen */
.count-number,
.trees-number {
    transition: all 0.3s ease;
}
