/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #faf5f0, #fefefe);
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #fff0e9;
  padding: 20px 0;
  border-bottom: 1px solid #e0d0c8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

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

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.05em;
}

nav a.active {
  color: #d26c58;
  border-bottom: 2px solid #d26c58;
}

/* Main content */
main {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fefefe;
}

.intro {
  background-color: #ffffff;
  padding: 40px;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.intro h1 {
  color: #d26c58;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.intro p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* List styling */
.intro ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.intro li {
  margin-bottom: 10px;
}

/* Pricing cards */
.price-tier {
  background-color: #fcf8f6;
  border: 1px solid #e6d9d5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.price-tier h2 {
  margin-top: 0;
  color: #c6533d;
}

/* Form */
form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form label {
  font-weight: bold;
}

button {
  align-self: flex-start;
  padding: 12px 25px;
  background-color: #d26c58;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #bb594f;
}

.note {
  font-style: italic;
  color: #777;
  margin-top: 40px;
}
.gform-embed-container {
  max-width: 800px; /* Set a maximum width for desktop */
  margin: 0 auto; /* Center the container on the page */
  padding: 20px; /* Optional: Add some spacing around the form */
}

.gform-embed-container iframe {
  width: 100%; /* Ensures the iframe scales on mobile */
  height: 800px; /* Set a fixed height, or adjust as needed */
}

@media (max-width: 768px) {
  .gform-embed-container {
    padding: 10px; /* Adjust padding for smaller screens */
  }
}

