/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  background-color: #f4f5f7;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #1E3A5F;
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 30px;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
}

.cta-button {
  background-color: #FF6F3C;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #ff8f5a;
}

/* Section Headers */
section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 20px;
}

/* Unique Selling Points Section */
.usp-section {
  background-color: white;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.usp-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.usp-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 10px;
}

.usp-item p {
  font-size: 0.95rem;
  color: #555555;
}

/* Signup Section */
.signup-section {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
}

.signup-section form {
  max-width: 600px;
  margin: auto;
}

.signup-section input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin: 10px 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.signup-section button {
  padding: 12px 25px;
  background-color: #FF6F3C;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.signup-section button:hover {
  background-color: #ff8f5a;
}

.agreement {
    display: block;
    color: gray;
    font-size: 8px;
    margin-top: 25px;
}

/* Description Section */
.description-section {
  background-color: #f4f5f7;
  padding: 30px 20px;
  text-align: center;
}

.description-section p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #555555;
}

/* Footer */
footer {
  background-color: #333333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.contact-p {
  margin-top: 15px;
  font-size: 1rem;
}

.mail-url {
  color: #FF6F3C;
  text-decoration: none;
}

.mail-url:hover {
  text-decoration: underline;
}

.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
}

#messageElement {
  color: #F5A623;
  font-size: 1em;
  display: block;
  margin: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .usp-list {
    flex-direction: column;
    align-items: center;
  }

  .usp-item {
    max-width: 100%;
  }
}