#fw-section-custom-html-d3dd8adc-632c-40ee-bc95-48839a6835fd {
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('/mnt/data/background.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero .media iframe {
  width: 80%;
  max-width: 600px;
  height: 300px;
  border-radius: 10px;
  border: none;
}

.hero .cta button {
  background-color: #4a00e0;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero .cta button:hover {
  background-color: #7b2ee6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .media iframe {
    height: 200px;
  }
}

}
#fw-section-custom-html-23b40228-b054-4820-a310-78848f752398 {
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #e7e5da; /* Background color set */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none; /* Removed background shadow */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #444;
}

.hero .media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero .media iframe {
  width: 80%;
  max-width: 600px;
  height: 300px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .cta button {
  background-color: #1e1e1e; /* Updated button color */
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: none; /* Removed button shadow */
}

.hero .cta button:hover {
  background-color: #3700b3;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .media iframe {
    height: 200px;
  }
}

}
#fw-section-custom-html-b9a6fa1c-476c-46cb-b58b-1b84a92f753f {
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Title Slide */
.title-slide {
    background-color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-slide .content {
    display: flex;
    flex-direction: row; /* Aligns video and text side by side */
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.title-slide .video {
    flex: 1;
}

.title-slide .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.title-slide .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title-slide .text {
    flex: 1;
    max-width: 600px;
}

.title-slide .text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.title-slide .text p {
    font-size: 1.2rem;
    color: #555;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .title-slide .content {
        flex-direction: column; /* Stack video and text vertically */
        text-align: center;
    }

    .title-slide .video-wrapper {
        padding-bottom: 56.25%; /* Maintain video aspect ratio for smaller screens */
        height: auto;
    }

    .title-slide .text h1 {
        font-size: 2rem;
    }

    .title-slide .text p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .title-slide .text h1 {
        font-size: 1.5rem;
    }

    .title-slide .text p {
        font-size: 0.9rem;
    }
}


}