/* ================= SECTION ================= */
.vc-section {
  padding: 15px 20px;
  overflow: hidden;
}

/* ================= TITLE ================= */
.vc-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 50px;
  line-height: 1.2;
}

/* ================= CONTAINER ================= */
.vc-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

/* ================= HEADER ================= */
.vc-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 20px !important;
}

/* ================= LEFT SIDE ================= */
.vc-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================= IMAGE ================= */
.vc-image {
  width: 100%;
}

.vc-image img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.vc-image img:hover {
  transform: scale(1.03);
}

/* ================= QUOTE CARD ================= */
.vc-quote-card {
  background: rgba(0, 117, 190, 0.08);
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-red);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-style: italic;
}

.vc-quote-card p {
  line-height: 1.8;
  color: #444;
}

.vc-quote-card h4 {
  margin-top: 15px;
  color: var(--primary-blue);
}

/* ================= RIGHT SIDE ================= */
.vc-right {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= SUBTITLE ================= */
.vc-subtitle {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

/* ================= CONTENT ================= */
.vc-content p {
  margin-bottom: 15px;
  line-height: 1.9;
  color: #444;
}

/* ================= MOBILE ================= */
@media(max-width: 768px){

  body{
    overflow-x: hidden;
  }

  .vc-section{
    padding: 15px 10px;
  }

  .vc-title{
    font-size: 28px;
    margin-bottom: 30px;
    word-break: break-word;
  }

  .vc-container{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vc-left{
    width: 100%;
  }

  .vc-image{
    width: 100%;
  }

  .vc-image img{
    width: 100%;
    height: auto;
  }

  .vc-right{
    padding: 18px;
    text-align: left;
  }

  .vc-header{
    padding: 15px;
    text-align: center;
  }

  .vc-header h4{
    font-size: 16px;
    line-height: 1.5;
  }

  .vc-content p{
    font-size: 15px;
    line-height: 1.7;
  }

  .vc-quote-card{
    padding: 18px;
  }

  .vc-quote-card p{
    font-size: 15px;
    line-height: 1.7;
  }

  .vc-quote-card h4{
    font-size: 16px;
  }
}