:root{
    /* Customize these to change sizes quickly */
    --eyebrow-size: 30px;   /* "About COSH" size */
    --title-size: 30px;     /* main H2 size */
    --body-size: 16px;
  }
.about-main-wraper {
    padding: 80px 0 60px;
    background: #f8fafc
}

.about-image-wraper {
    width: 100%;
    position: relative
}



.about-image-wraper .big-image {
    width: 100%;
    position: relative;
    z-index: 111;
    border-radius: 25px
}

.award-image {
    position: absolute;
    bottom: 10%;
    left: -80px;
    z-index: 1111
}

.about-text-wraper {
    margin-left: 15px;
    margin-top: 15px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.about-text-wraper span {
    font-size: var(--eyebrow-size);
    color: #D29D51;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-left: 36px;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 12px;
  }

  /* decorative bar to the left of the eyebrow */
  .about-text-wraper span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* single valid gradient across the bar */
    background: linear-gradient(90deg, #D29D51 0%, #F8CA72 40%, #ED1B24 70%, #000000 100%);
    width: 28px;
    height: 3px;
    border-radius: 2px;
  }

  /* Main title */
  .about-text-wraper h2 {
    font-size: var(--title-size);
    color: #000;
    margin: 8px 0 18px;
    line-height: 1.08;
    font-weight: 800;
    /* subtle text gradient effect: change colors as you like */
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 6px;
  }

.about-text-wraper p {
    font-size: 18px;
    line-height: 32px;
    color: #4a5568;
    padding-bottom: 15px;
    font-weight: 400;
    text-align: justify
}

.about-text-wraper p strong {
    color: linear-gradient(to right, #ED1B24, #000000);
    font-weight: 600
}

.about-text-wraper p em {
    font-style: italic;
    color: linear-gradient(to right, #D29D51, #F8CA72);
    font-weight: 500
}

.about-text-wraper p span.highlight {
    background: rgba(22, 130, 196, .1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    color: linear-gradient(to right, #ED1B24, #000000)
}

.about-text-wraper p.quote {
    font-style: italic;
    border-left: 4px solid linear-gradient(to right, #D29D51, #F8CA72);
    background: linear-gradient(135deg, rgba(22, 130, 196, .1), rgba(248, 250, 252, .9));
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 15px 15px 0;
    position: relative
}

.about-text-wraper p.quote:before {
    top: -5px;
    left: 10px
}

.about-text-wraper p.quote:after,
.about-text-wraper p.quote:before {
    content: '"';
    position: absolute;
    font-size: 48px;
    color: linear-gradient(to right, #D29D51, #F8CA72);
    font-family: serif;
    line-height: 1
}

.about-text-wraper p.quote:after {
    bottom: -15px;
    right: 10px
}

.about-text-wraper ul {
    list-style: none;
    margin-top: 15px
}

.about-text-wraper ul li {
    font-size: 18px;
    line-height: 32px;
    color: #4a5568;
    padding-bottom: 12px;
    position: relative;
    padding-left: 30px
}

.about-text-wraper ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: linear-gradient(to right, #D29D51, #F8CA72);
    font-weight: 700;
    font-size: 20px
}

.about-text-wraper ul li i {
    color: linear-gradient(to right, #D29D51, #F8CA72);
    margin-right: 5px;
    font-size: 25px;
    position: relative;
    top: 3px
}

.btn-about-wrap {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.btn-about-wrap a {
    display: inline-block;
    background: linear-gradient(to right, #ED1B24, #000000);
    width: auto;
    min-width: 200px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 8px;
    margin-right: 0;
    text-decoration: none;
    transition: background-color .3s ease
}

.btn-about-wrap a:hover,
.btn-about-wrap a:nth-child(2) {
    background: linear-gradient(to right, #D29D51, #F8CA72)
}

.btn-about-wrap a:nth-child(2):hover {
    background: linear-gradient(to right, #ED1B24, #000000)
}

@media (max-width: 768px) {
    .about-main-wraper {
        padding: 40px 0 30px
    }

    .about-text-wraper {
        margin-left: 0;
        margin-top: 30px;
        padding: 20px
    }

    .about-text-wraper h2 {
        font-size: 32px;
        line-height: 38px
    }

    .about-text-wraper p {
        font-size: 16px;
        line-height: 28px
    }

    .btn-about-wrap {
        flex-direction: column
    }

    .btn-about-wrap a {
        width: 100%
    }
}
