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

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Cohesive Section */
.cohesive {
    width: 100%;
    background-color: #fff;
}

/* Colorful Image Strip */
.cohesive__strip {
    width: 100%;
    height:  8px;
    overflow: hidden;
    background: linear-gradient(
        to right,
        #8B4513 0%,
        #D2691E 10%,
        #4169E1 20%,
        #000080 30%,
        #2F4F4F 40%,
        #696969 50%,
        #DDA0DD 60%,
        #FFB6C1 70%,
        #F5F5DC 80%,
        #A9A9A9 90%,
        #2F4F4F 100%
    );
}

.cohesive__strip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Container */
.cohesive__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.cohesive__content {
    max-width: 1200px;
}

.cohesive__text {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: #2c2c2c;
    font-weight: 400;
}

.cohesive__highlight {
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cohesive__container {
        padding: 70px 30px;
    }
}

@media (max-width:  768px) {
    .cohesive__container {
        padding: 60px 20px;
    }
    
    .cohesive__text {
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .cohesive__container {
        padding: 50px 15px;
    }
    
    .cohesive__strip {
        height: 6px;
    }
}

/* Optional: Add fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform:  translateY(20px);
    }
    to {
        opacity: 1;
        transform:  translateY(0);
    }
}

.cohesive__content {
    animation: fadeIn 1s ease-out;
}