/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap"); */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Noto Sans", sans-serif; */
            font-family: 'Montserrat', sans-serif;

        }

body {
  margin: 0;
  /* font-family: 'Segoe UI', sans-serif; */
  font-family: 'Montserrat', sans-serif;
  background-color: #e6e7fb;
  color: #1d1b3a;
}

.video-section {
  background-color: black;
  text-align: center;
}

.video-placeholder {
  width: 100%;
  /* max-height: 700px; */
  object-fit: contain;
}

.dev-section {
  display: flex;
  padding: 2rem;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 100px;
}

.dev-section .left {
  max-width: 400px;
  margin-top: -100px;
}

.dev-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-top: 0;
  font-weight: 400;
}

.dev-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.dev-section li {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  font-size: 1rem;
}

.dev-section li img {
  width: 40px;
  margin-right: 10px;
}

.manual-btn {
  background-color: #1d1b3a;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.right video {
  max-width: 700px;
  border: 4px solid #1d1b3a;
}


.chaleco-video {
  max-width: 400px;
  border: 4px solid #1d1b3a;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




        /* NAVBAR */
        .navbar {
            background-color: #0b0d33;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .logo {
            height: 40px;
        }

        nav a {
            margin: 0 1rem;
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #e30613;
        }

        .menu {
            font-size: 22px;
        }


        /* RESPONSIVE */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.3rem;
            }

            .logo {
                height: 30px;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 14px;
            }

            .video-section {
              background-color: black;
              text-align: center;
              margin-top: 73px;
            }

            .dev-section {
              display: block;
              padding: 2rem;
              justify-content: space-around;
              align-items: center;
              flex-wrap: wrap;
              margin-top: 10px;
              margin-bottom: 40px;
            }

            .dev-section .left {
              max-width: 400px;
              margin-top: 0;
            }

            .dev-section h2 {
              font-size: 40px;
              margin-bottom: 2rem;
              margin-top: 0;
              font-weight: 400;
            }

            .right {
              padding-top: 50px;
            }

            .right video {
              /* max-width: 700px; */
              max-width: -webkit-fill-available;
              border: 4px solid #1d1b3a;
            }


            .chaleco-video {
              max-width: 400px;
              border: 4px solid #1d1b3a;
              border-radius: 8px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }


        }

        .navbar nav a.active {
            color: red;
            font-weight: bold;
            }