

body {
    
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;

}


.custom-section {
    background-color: #ffffff;
padding: 30px 30px; 
}


.section-title {
    text-align: center;
font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f403f;
}


.content-grid {
    max-width: 1200px;
margin: 0 auto;
    display: grid;
    
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

}


.custom-item {
    display: flex;
background-color: #f5f5f5; 
    border-radius: 8px;
    overflow: hidden;

    
    transition: none;

}


.custom-item:hover {
    
}


.item-image {
    flex-shrink: 0;

    width: 50%;

}

.item-image img {
    display: block;
width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px 0 0 8px;

}


.item-text {
    flex-grow: 1;
padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-title {
    font-size: 18px;
font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.item-description {
    font-size: 14px;
line-height: 1.6;
    color: #7f8c8d;
}


@media (max-width: 768px) {
    .custom-section {
        padding: 30px 15px;
}
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
}

    .content-grid {
        
        grid-template-columns: 1fr;
gap: 20px;
    }

    .custom-item {
        
        flex-direction: column;
}

    .item-image {
        width: 100%;

        
        
        aspect-ratio: 1 / 1;

    }

    .item-image img {
        border-radius: 8px 8px 0 0;

    }

    .item-text {
        padding: 20px;
text-align: center;
    }

    .item-title {
        font-size: 20px;
}

    .item-description {
        font-size: 14px;
}
}
