.guarantee-section {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    margin: 0 auto;
}

.img-col {
    flex: 1;
    max-width: 450px;
}

.founder-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.text-col {
    flex: 1.2;
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
}

.guarantee-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (max-width: 1024px) {
    .guarantee-section {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 60px 20px;
    }
}

@media (max-width: 650px) {
    .guarantee-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 60px 20px;
    }
}