* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body, html {
    width: 100%;
    height: 100%;
}

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

nav {
    position: absolute;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

#logo {
    width: 120px;
    transition: transform 0.1s;
}

.hero-text {
    position: absolute;
    left: 50px;
    bottom: 20%;
    color: #fff;
}

section {
    padding: 60px 50px;
}
body, h2, h3, p, button, ul {
  font-family: Helvetica, Arial, sans-serif;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
}

@media(max-width: 768px){
    nav ul li {
        margin-left: 15px;
    }
    .hero-text {
        left: 20px;
        bottom: 10%;
    }
}


.entry-section {
  font-family: Helvetica, sans-serif;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.entry-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.entry-block.reverse {
  flex-direction: row-reverse;
}

.entry-image {
  flex: 1 1 300px;
  min-width: 280px;
}

.entry-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.entry-text {
  flex: 1 1 300px;
  min-width: 280px;
}

.entry-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.entry-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .entry-block {
    flex-direction: column;
    text-align: center;
  }

  .entry-block.reverse {
    flex-direction: column;
  }

  .entry-text h2 {
    font-size: 1.5rem;
  }

  .entry-text p {
    font-size: 0.95rem;
  }
}


.work-with-us {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.work-content {
  max-width: 700px;
  margin: auto;
}

.work-content h2 {
  font-family: Helvetica, sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.work-content p {
  font-family: Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.work-button {
  display: inline-block;
  font-family: Helvetica, sans-serif;
  text-decoration: none;
  background: #fff;
  color: #000;
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.work-button:hover {
  background: #000;
  color: #fff;
}