* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 999;
  padding: 20px 0;
  text-align: center;
}

.header-logo {
  width: 300px;
  height: auto;
}

.content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
  background-color: #ffffff;
}

.content section {
  margin: 60px 0;
}

.content h1 {
  font-weight: 700;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.content p {
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.05em;
}

.sketch-image {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.video-section {
  padding: 60px 5% 0 5%;
  background-color: #ffffff;
}

.video-section iframe {
  border: none;
  max-width: 100%;
  width: 100%;
  height: 500px;
}


.footer {
  background-color: #ffffff;
  text-align: center;
  padding: 40px 0 20px 0;
}

.footer-logo {
  width: 400px;
  height: auto;
  margin-bottom: 15px;
}

.footer p {
  font-weight: 400;
  font-size: 0.95em;
}









.social-newsletter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 20px;
}








.social-icons a {
  margin-right: 15px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.newsletter-form {
  flex-grow: 1;
  max-width: 500px;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
}

.newsletter-form label {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-row button {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  background-color: #FF671F;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.input-row button:hover {
  background-color: #e05b1b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .social-newsletter-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .input-row {
    flex-direction: column;
    width: 100%;
  }

  .input-row input,
  .input-row button {
    width: 100%;
  }
}