.part-of {
    padding: 8rem 5%;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.part-of::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 20%;
    height: 50%;
    background: radial-gradient(circle, rgba(85, 107, 47, 0.1), transparent 70%);
    animation: pulse 10s infinite linear;
}

.part-of::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 20%;
    height: 50%;
    background: radial-gradient(circle, rgba(143, 163, 30, 0.1), transparent 70%);
    animation: pulse 10s infinite linear reverse;
}

.part-of-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.part-of-content h2.section-title {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 2rem;
}

.part-of-content h3 {
    color: var(--color-a);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.part-of-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.part-of-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.part-of-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.part-of-features i {
    color: var(--color-d);
    font-size: 1.5rem;
}

.part-of-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.part-of-image:hover {
    transform: scale(1.05);
}

.part-of-image img {
    width: 100%;
    display: block;
}