* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0efef;
  color: #000000;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

input, 
select, 
textarea, 
button {
  font-family: inherit;
}

::placeholder {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #999;
}

header {
  position: relative;
  background-color: #368564;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin-bottom: 0.3rem;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin: 0 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #67b99a;
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  border-radius: 8px;
  margin: 0 auto; 
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

}

.centerform {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #368564;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.centerform:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

form textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.button-group {
  text-align: center;
  margin-top: 1rem;
}

form button {
  background-color: #368564;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  width: 100%;
  margin: 1.5rem 0 0 0;
  text-align: center;
  display: block;
  margin-top: -10px;
}

form button:hover {
  background-color: #2c6b56;
}

.button-group button {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

footer {
  background-color: #368564;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.center {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #368564;
}

.center u {
  color: #368564;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

.hidden {
  display: none;
}

section:nth-of-type(2) {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #368564;
}

section h2 {
  color: #368564;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #000000c5;
  padding: 0.8rem 1rem;
  background-color: #e9e8e8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

li:hover {
  background-color: #c8e2d8;
  transform: translateY(-2px);
}

li::before {
  content: "➜";
  color: #368564;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.pricing-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #368564;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-box h2 {
  color: #368564;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-box p {
  margin: 1rem 0;
  text-align: center;
  font-size: 1.1rem;
}

.pricing-box p:first-of-type {
  font-weight: 600;
  color: #000000;
  font-size: 1.2rem;
}

.pricing-box u {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.pricing-button {
  display: block;
  background-color: #368564;
  color: white;
  text-align: center;
  padding: 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.pricing-button:hover {
  background-color: #2c6b56;
}

.centerimg {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #368564;
}

.centerimg:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.centerimg img {
  border-radius: 12px; 

}

.download-button {
  display: block;
  background-color: #368564;
  color: white;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 1rem auto;
  transition: background-color 0.3s ease;
  max-width: 200px;
  width: 100%;
}

.download-button:hover {
  background-color: #2c6b56;
}

.logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  width: 105px;
  height: 75px;
}


.title-container {
  flex: 1;
  text-align: center;
}

.header-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

nav {
  margin-top: 0.5rem;
}

