* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    padding: 5vh 20vw
}

.section {
    background: white;
    margin: 5vh 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.text-area, .image-area {
    flex: 1;
}

.text-area {
    padding: 50px;
}

.text-area h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: bold;
    border-bottom: 3px solid #FF5722;
    padding-bottom: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05em;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF5722;
    font-weight: bold;
    font-size: 1.2em;
}

.image-area {
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: 100%; 
}

.image-area img {
    width: 100%;    
    height: 100%; 
    object-fit: cover;  
}

@media (max-width: 768px) {
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        direction: 1tr;
    }

    .text-area {
        padding: 30px 20px;
    }

    .text-area h2 {
        font-size: 1.5em;
    }

    .image-area {
        min-height: 250px;
        order: -1;
    }

    .feature-list li {
        font-size: 0.95em;
        padding: 12px 0 12px 25px;
    }

    .container {
        padding: 3vh 4vw;
    }

    .section {
        margin: 5rem 0;
        border-radius: 12px;
    }

    .section-content,
    .section-content.reverser {
        flex-direction: column !important;
    }

    .text-area {
        padding: 30px 25px;
    }

    .text-area h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #FF5722
    }

    .feature-list li {
        font-size: 0.95em;
        padding: 10px 0;
        padding-left: 25px;
    }

    .feature-list li::before {
        font-size: 1.1em;
    }

    .image-area {
        width: 100%;
        min-height: 250px;
        order: -1;
    }

    .image-area img {
        object-fit: contain;
        max-height: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 20px 30px;
    }

    .text-area {
        padding: 40px;
    }

}
