/* Frontend Styles for Peptide Section */
.content-section {
    padding: 80px 0;
}

.content-section.white {
    background: white;
}

.content-section.gray {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}pcus

.content-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.section-title {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start !important; 
}

.text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.what-image-wrapper {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.what-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .what-grid {
        grid-template-columns: 1fr;
    }

    .content-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 0;
    }
}
