        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }



        :root {
    --primary: #00ADB5;
    --secondary: #7D0A0A;
    --third: #EAD196;
    --bg: #f7f7f7;
    --text: #222831;
    --text-secondary: #393E46;
    --white: #EEEEEE;
   --font-size-h1: 48px;
   --font-size-h2: 36px;
   --font-size-h3: 24px;
 --font-size-p: 14px;
  --font-size-button: 14px;
--font-size-review: 18px;
--font-size-review-sub: 14px;
}








.ou-st-hero-section {
  max-width: 1400px;
  width: 98%;
  margin: 60px auto;
  /* padding: 2rem; */
}

.ou-st-hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.ou-st-hero-image {
  flex: 1;
  max-width: 500px;
}

.ou-st-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .ou-st-hero-image img:hover {
  transform: scale(1.05);
} */

.ou-st-hero-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.ou-st-hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: #161616;
  margin-bottom: 1rem;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.ou-st-hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.ou-st-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ou-st-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ou-st-btn i {
  margin-right: 0.5rem;
}

.ou-st-btn-primary {
  background-color: #161616;
  color: white;
}

.ou-st-btn-primary:hover {
  background-color: var(--text-secondary);
  transform: translateY(-2px);
}

.ou-st-btn-secondary {
  background-color: var(--white);
  color: #161616;
  border: 1px solid #161616;
}

.ou-st-btn-secondary:hover {
  background-color: var(--text-secondary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {

.ou-st-hero-section {
  margin: 50px auto;
  /* padding: 2rem; */
}

  .ou-st-hero-title {
    font-size: 2rem;
  }

  .ou-st-hero-text {
    font-size: 1rem;
  }

  .ou-st-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .ou-st-hero-buttons {
    justify-content: center;
  }
}





.ou-st-image-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.ou-st-image-container {
  overflow: hidden;
}

.ou-st-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ou-st-image {
    content: url('/img/webdanny\ story\ responsive.png');
  }
}







.ou-st-text-image-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.ou-st-text-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.ou-st-text-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.ou-st-text-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ou-st-text-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  opacity: 0;
}

.ou-st-text-paragraph.animated {
  opacity: 1;
}

.ou-st-text-paragraph span {
  margin-right: 0.3rem;
}

.ou-st-image-content {
  flex: 1;
  min-width: 300px;
}

.ou-st-section-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.ou-st-section-image.animated {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .ou-st-text-image-container {
    flex-direction: column;
    text-align: center;
  }

  .ou-st-text-title {
    font-size: 1.8rem;
  }

  .ou-st-text-paragraph {
    font-size: 1rem;
  }
}












.ou-st-icon-image-section {
  max-width: 1200px;
  margin: 70px auto;
  padding: 15px;
}

.ou-st-icon-image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ou-st-left-boxes,
.ou-st-right-boxes {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ou-st-middle-box {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ou-st-middle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

.ou-st-middle-image:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.ou-st-box {
  background-color: #161616;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ou-st-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ou-st-box-icon {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.ou-st-box-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

@media (max-width: 768px) {
  .ou-st-icon-image-container {
    flex-direction: column;
    gap: 1rem;
  }

  .ou-st-left-boxes,
  .ou-st-middle-box,
  .ou-st-right-boxes {
    min-width: 100%;
  }

  .ou-st-middle-image {
    max-height: 400px;
  }

  .ou-st-box {
    padding: 1rem;
  }

  .ou-st-box-icon {
    font-size: 1.8rem;
  }

  .ou-st-box-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .ou-st-icon-image-section {
    padding: 1rem;
  }

  .ou-st-middle-image {
    max-height: 300px;
  }

  .ou-st-box-icon {
    font-size: 1.5rem;
  }

  .ou-st-box-text {
    font-size: 0.9rem;
  }
}



.ou-story-cine-img{
    margin: 0px auto;
    margin-top: 70px;
    max-width: 500px;
    width: 98%;
    overflow: hidden;
}
.ou-story-cine-img img{
   width: 100%;
   height: auto;
   object-fit: cover;
}



@media(max-width: 768px){
  .ou-story-cine-img{
    margin: 0px auto;
    margin-top: 70px;
    width: 350px;
}
.ou-story-cine-img img{
   width: 100%;
   height: auto;
   object-fit: cover;
}  
}



@media (max-width: 480px) {
  .ou-st-hero-title {
    font-size: 1.8rem;
  }

  .ou-st-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .ou-st-hero-content{
    padding: 10px;
    text-align: left;
  }
  .ou-st-text-image-section{
    padding: 10px;
    text-align: left;
  }
  .ou-st-text-content {
    text-align: left;
}
}