

.intro-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 80px;
}

.intro-content {
  flex: 1;
}

.title {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
}

.subtitle {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 28px;
  color: #444;
}

.text {
  margin-bottom: 20px;
  font-size: 16px;
}

.intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.intro-image img {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  border-radius: 40px;
  height:600px;
}

/* Responsive cho mobile */
@media (max-width: 900px) {
  .intro-section {
    flex-direction: column;
    padding: 40px;
  }

  .intro-image img {
    max-width: 100%;
  }
}

.story-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px; 
  padding: 80px;
}

.story-images {
  display: flex;
  gap: 20px;
  flex: 1;
}

.story-images img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}


.img-large {
  flex: 1.3;
}


.img-column {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-content {
  flex: 1.5;
}

.story-title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 12px;
  color: #424242;
}

/* đường kẻ dưới title */
.story-divider {
  width: 80px;
  height: 3px;
  background-color: #333;
  margin-bottom: 26px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;

}

/* ==== RESPONSIVE ==== */
@media(max-width: 980px) {
  .story-section {
    flex-direction: column;
    padding: 40px 24px;
  }

  .story-images {
    width: 100%;
  }
}

@media(max-width: 720px) {
  .story-images {
    flex-direction: column;
  }

  .img-column {
    flex-direction: row;
  }

  .img-column img {
    width: 50%;
  }
}

.row{
  display:flex;
  align-items: center;
  gap:2rem;
  flex-wrap: wrap;
  padding:2rem 0;
  padding-bottom: 3rem;
}

 .row .images-contain{
  flex:1 1 40rem;
  position:relative;
}
 .row .images-contain img{
  width:580px;
  border:1.5rem solid #fff;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0, .1);
  height: 680px;
  object-fit: cover;
}
.row .images-contain h3{
  position:absolute;
  top:50%; transform:translateY(-50%);
  font-size: 3rem;
  width:580px;
  padding:1rem 2rem;
  background:#fff;
  text-align: center;
  mix-blend-mode: screen;
}

.video-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 80px;
}
.video-intro {
  flex: 1.8;
}

.title {
  font-size: 33px;
  margin-bottom: 12px;
  font-weight: 600;
}

.subtitle {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 28px;
  color: #444;
}
.video{
    flex:1;
    display:flex;
    max-width:650px;
}

.heading{
  text-align: center;
  font-size: 4rem;
  color:#333;
  padding:1rem;
  margin:2rem 0;
  background:rgba(116, 62, 0, 0.05);

}

.heading span{
  color:rgb(228, 136, 23);
}
.heading{
  font-size: 3rem;
}

.box-container {
    
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    padding: 20px; 
    justify-content: center; 
}

.box-container .box {
    width: calc(50% - 10px); 
    max-width: 450px; 
    

    padding: 25px;
    border: 1px solid #ccc; 
    box-shadow: 0 5px 10px rgba(0,0,0,.1); 
}

@media (max-width: 768px){
    .box-container .box {
        width: 100%; 
    }
}

img {
    max-width: 100%; 
    height: auto;    
    display: block;  
}   

.box .user img {
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-right: 15px; 
}

.review .box-container .box{
    flex:1 1 30rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0, .1);
    padding: 3rem 2rem;
    position:relative;
}

.review .box-container .box .fa-quote-right{
    position:absolute;
    bottom:3rem; right:3rem;
    font-size: 6rem;
    color:#eee;
}

.review .box-container .box .user{
    display:flex;
    align-items: center;
    padding-top:2rem;
}

.review .box-container .box .stars i{
color: rgb(238, 74, 107);
font-size: 2rem;
}

.review .box-container .box p{
color: #999;
font-size: 1.5rem;
line-height: 1.5;
}



