body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f6f8;
  color: #111;
}

/* HERO */
.hero {
  height: 50vh;
  background: url('../img/perfect_swirl_gelato_ice_cream.png') center/cover no-repeat;
  position: relative;
}

.hero-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* LOGO */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: clamp(240px, 20vw, 360px);
  height: auto;
  z-index: 10;
}

/* FORM */
.hero-form {
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 12px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-heading {
  color: #07222E;
  margin-bottom: 5px;
}

.form-note {
  font-size: 12px;
  font-style: italic;
  text-align: right;
  color: #555;
}

.hero-form input,
.hero-form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
}

.row {
  display: flex;
  gap: 10px;
}

.row select {
  flex: 1;
}

.checkbox {
  font-size: 12px;
}

/* BUTTON */
.hero-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  transition: all 0.25s ease;
  font-family: 'Montserrat', sans-serif;
}

.hero-form button:disabled {
  background-color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-form button:not(:disabled) {
  background: linear-gradient(135deg, #ff0000, #8b0000);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.8);
  cursor: pointer;
}

.hero-form button:not(:disabled):hover {
  box-shadow: 0 0 22px rgba(255, 0, 0, 1);
  transform: scale(1.03);
}

/* CONTENT */
.content {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.section .text {
  flex: 1;
}

.section .image {
  flex: 1;
}

.section img {
  width: 100%;
  border-radius: 10px;
}

.full-text {
  margin-bottom: 60px;
}

.full-text p {
  margin-bottom: 15px;
}

/* HEADLINE */
.headline {
  font-size: 34px;
  color: #07222E;
  margin-bottom: 20px;
}

/* CTA */
.cta {
  text-align: center;
  margin: 60px 0;
}

.cta-button {
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, #ff0000, #8b0000);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.8);
  animation: pulse 1.5s infinite;
  display: inline-block;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.6); }
  50% { box-shadow: 0 0 22px rgba(255, 0, 0, 1); }
  100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.6); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    position: static;
    margin-bottom: 20px;
    width: clamp(220px, 55vw, 320px);
  }

  .section {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }
}