/* assets/css/main.css */

/* General reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Layout */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  list-style: none;
  display: flex;
}
.nav-menu li {
  margin-left: 20px;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
}
.cta-button {
  background-color: #007BFF;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  padding: 20px;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-section {
  flex: 1;
  margin-right: 20px;
}
.footer-section h4 {
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li a {
  text-decoration: none;
  color: #555;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #aaa;
}

/* Section styling */
section {
  margin-bottom: 60px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5faff;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Features section */
.features h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.features ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.features ul li {
  margin-bottom: 10px;
}

/* CTA buttons */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}

body {
  background-color: #f0f8ff;
}

.testimonial-section {
  margin: 40px 0;
}
.testimonial-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
.testimonial-section blockquote {
  margin: 20px auto;
  max-width: 800px;
  font-style: italic;
}
.testimonial-section cite {
  display: block;
  margin-top: 8px;
  text-align: right;
  color: #555;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  padding-left: 0;
}

form.beta-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

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

form.beta-form input[type="text"],
form.beta-form input[type="email"],
form.beta-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form.beta-form textarea {
  resize: vertical;
}

form.beta-form input[type="checkbox"] {
  margin-right: 8px;
}

form.beta-form button[type="submit"] {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}

form.beta-form button[type="submit"]:hover {
  background-color: #0056b3;
}