/* Takeaways Section Styles */
.stats02 {
    padding: 90px 0;
    background-color: var(--mint-cream);
}

.stats02 .content-wrapper {
    padding-right: 2rem;
}

.stats02 .takeaway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stats02 .takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats02 .takeaway-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stats02 .takeaway-icon {
    font-size: 2rem;
    line-height: 1;
    background: var(--sage-light);
    color: var(--sage);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.stats02 .takeaway-content {
    flex: 1;
}

.stats02 .takeaway-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.stats02 .image-wrapper {
    position: relative;
    margin-top: 3rem;
}

.stats02 .image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.stats02 .image-container img {
    width: 100%;
    height: auto;
    transform: scale(1.02); /* Slight scale to prevent white edges on hover */
    transition: transform 0.5s ease;
}

.stats02 .image-wrapper:hover .image-container img {
    transform: scale(1.05);
}

.stats02 .quote-wrapper {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
}

.stats02 .quote-wrapper p {
    margin: 0;
    color: var(--green-deep);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stats02 .content-wrapper {
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    .stats02 .quote-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .stats02 .takeaway-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats02 {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .stats02 .takeaway-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stats02 .takeaway-icon {
        margin-bottom: 1rem;
    }
}