* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* Hero */

.hero {
  padding: 100px 0;
  background-color: #ffffff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.1;
}

.hero p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}


/* Buttons */

.cta-button {
  display: inline-block;
  padding: 14px 24px;
  background-color: #0077cc;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}


/* Services */

.services {
  padding: 80px 0;
}

.services h2 {
  margin-bottom: 32px;
  font-size: 36px;
}

.services-grid {
  display: flex;
  gap: 24px;
}

.service-card {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  line-height: 1.6;
}


/* Why Us */

.why-us {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-us h2 {
  margin-bottom: 32px;
  font-size: 36px;
}

.why-us-grid {
  display: flex;
  gap: 24px;
}

.why-us-grid > div {
  flex: 1;
}

.why-us-grid h3 {
  margin-bottom: 12px;
}

.why-us-grid p {
  line-height: 1.6;
}


/* Contact CTA */

.contact-cta {
  padding: 80px 0;
  background-color: #0077cc;
  text-align: center;
}

.contact-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta h2 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #ffffff;
}

.contact-cta p {
  margin-bottom: 28px;
  color: #ffffff;
  line-height: 1.6;
}

.contact-cta .cta-button {
  background-color: #ffffff;
  color: #0077cc;
}

.contact-cta .cta-button:hover {
  background-color: #f2f2f2;
}


/* Contact Form */

.contact-form-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.contact-form-section h2 {
  margin-bottom: 32px;
  font-size: 36px;
}

.contact-form-section form {
  max-width: 700px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}

.contact-form-section button {
  padding: 14px 24px;
  background-color: #0077cc;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form-section button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

.demo-note {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
}


/* Footer */

footer {
  padding: 32px 0;
  background-color: #ffffff;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
}

footer a {
  color: #222;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* Thank You Page */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  text-align: center;
}

.thank-you-page .container {
  max-width: 700px;
}

.thank-you-page h1 {
  margin-bottom: 20px;
  font-size: 48px;
}

.thank-you-page p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}


/* Privacy */

.privacy-note {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}


/* Tablet */

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 72px 0;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }
}


/* Mobile */

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image img {
    height: 280px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    flex-direction: column;
  }

  .why-us-grid {
    flex-direction: column;
  }

  .contact-cta h2 {
    font-size: 30px;
  }

  footer .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}