/* Product Facts List Section Styles */
.facts-list {
    padding: 80px 0;
    background-color: #fff;
}

.facts-list .facts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fact {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    width: 100%;
    margin-bottom: 0;
}

.fact .part {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.fact .image {
    background-color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.fact .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fact .content {
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fact .content .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.fact .content .text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.fact .content .text br {
    line-height: 1.8;
}

.fact .content .text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.fact .content .text span[style*="font-family"] {
    color: #333;
    font-weight: 600;
}

.fact .content .text hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 15px 0;
}

