body,
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #373D4D;
  color: #373D4D;
}

/* Header */
.header {
  width: 100%;
  background: #fff;
  min-height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 32px;
  position: relative;
  z-index: 10;
}

.header-logo {
  height: 44px;
  width: auto;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #373d4d;
  overflow: hidden;
  color: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: -150px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 48px;
  padding: 48px 0;
}

.hero-intro {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffa62b;
  margin-bottom: 12px;
}

.hero-emoji {
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
  max-width: 470px;
}

.hero-illustration {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: block;
  background: transparent;
}

/* Form Card */
.form-card {
  background: #3F4554;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  max-width: 480px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.hero-form {
  flex: 1;
  min-width: 320px;
  max-width: 480px;
  margin: 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

.form-title {
  color: #ffa62b;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-title-accent {
  color: #ffa62b;
}

.form-card h2 {
  color: #FFA62B;
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: none;
  font-size: 1rem;
  margin-top: 4px;
  background: #fff;
  color: #373D4D;
}

.form-group input::placeholder {
  color: #8C94A3 !important;
  opacity: 1;
}

.form-card button {
  width: 100%;
  background: #FFA62B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.form-card button:hover {
  background: #ff9900;
}

.form-disclaimer {
  font-size: 0.95em;
  margin-top: 16px;
  color: #fff;
  text-align: center;
}

/* Contact Form */
.contact-form {
  width: 70%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: start;
  justify-items: start;
}

.form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #E9EAF0;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 12px;
  background: #fff;
  color: #8C94A3;
}

.contact-form-disclaimer {
  font-size: 0.9em;
  margin-top: 16px;
  color: #373d4d;
}

.contact-form-label {
  color: #373D4D;
  text-align: left;
  font-size: 0.9rem;
}

.contact-form button {
  width: 100%;
  background: #FFA62B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

/* Sections */
.section {
  background: #F9F9FA;
  color: #373D4D;
  padding: 48px 0 32px 0;
  text-align: center;
}

.section-white {
  background: #fff;
  color: #373D4D;
  padding: 80px 0;
  text-align: center;
}

.section-white .orange-box {
  background: #FFA62B;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  width: 70%;
  align-self: center;
  justify-self: center;
}

.section-orange {
  background: #FFA62B;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.section-orange .white-box {
  background: #fff;
  color: #FFA62B;
  padding: 40px 0;
  text-align: center;
  width: 70%;
  align-self: center;
  justify-self: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.2rem;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  color: #737373;
}

.section-content {
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2.2;
  padding: 0 12px;
}

.section-highlight {
  margin-top: 18px;
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 16px;
}

.feature-box {
  background: #FFF0DB;
  border-radius: 8px;
  padding: 18px 20px;
  min-width: 240px;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Blog Section */
.blog-section {
  background: #faf8f6;
  padding: 48px 0 32px 0;
  text-align: center;
}

.blog-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-card {
  background: #373D4D;
  color: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  max-width: 220px;
  min-width: 180px;
  text-align: left;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.97rem;
  margin-bottom: 10px;
}

.blog-card a {
  color: #FFA62B;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
}

/* Footer */
.footer {
  background: #373D4D;
  color: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
  font-size: 0.97rem;
}

.footer-logo-container {
  margin-bottom: 12px;
}

.footer-logo {
  vertical-align: middle;
  margin-bottom: 8px;
}

.footer-form {
  margin-bottom: 18px;
}

.footer-copyright {
  margin-bottom: 10px;
}

.footer-social {
  font-size: 0.95em;
  color: #ffa62b;
}

.social-links {
  margin-left: 8px;
}

.social-link {
  color: #ffa62b;
  text-decoration: none;
  margin: 0 4px;
}

.footer input[type="email"] {
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  margin-right: 8px;
  font-size: 1rem;
}

.footer-social {
  margin-top: 18px;
}

.footer button {
  background: #FFA62B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.footer button:hover {
  background: #ff9900;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
    max-width: 800px;
  }
  .section-desc {
    font-size: 1.1rem;
    max-width: 550px;
  }
}

@media (max-width: 900px) {
  .section-title {
    font-size: 2rem;
    max-width: 600px;
  }
  .section-desc {
    font-size: 1rem;
    max-width: 500px;
  }
}

@media (max-width: 700px) {
  .section-title {
    font-size: 1.8rem;
    max-width: 90vw;
    padding: 0 20px;
  }
  .section-desc {
    font-size: 0.95rem;
    max-width: 85vw;
    padding: 0 20px;
  }
  
  .features,
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
  .form-card {
    max-width: 95vw;
  }
  .hero-content {
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
  }
  .hero-intro {
    min-width: auto;
    max-width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-emoji {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-illustration {
    max-width: 300px;
  }
  .hero-form {
    min-width: auto;
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
  }
  .form-input {
    min-width: auto;
  }
} 