/* General styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0 150px;
  background: white;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 60px 0;
  text-align: center;
}
.hero h2 {
  margin-bottom: 10px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}
.service {
  flex: 1 1 30%;
  padding: 30px;
  color: white;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.foundation {
  background-color: #58af6f;
}
.clarity {
  background-color: #2c9ab7;
}
.flow {
  background-color: #9170e5;
}
.presence {
  background-color: #f25c54;
}
.trust {
  background-color: #f2c14e;
}

/* CTA Section */
.cta {
  background-color: #f5f5f5;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.cta h2 {
  margin-bottom: 10px;
  font-size: 28px;
}
.cta p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #555;
}
.cta-button {
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.2s;
}
.cta-button:hover {
  background-color: #005fa3;
}

/*Contact*/
.contact-body {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-body h3 {
  margin-top: 40px;
  font-size: 22px;
}

.contact-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  color: #555;
}

.contact-body a {
  color: #0077cc;
  text-decoration: none;
}

.contact-body a:hover {
  text-decoration: underline;
}

/*Services page*/
.services-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.kit-card {
  padding: 30px;
  border-radius: 8px;
  color: white;
}

.kit-card h3 {
  margin-top: 0;
}

.kit-card ul {
  padding-left: 20px;
  margin: 10px 0;
  color: white;
}

.kit-card p {
  margin-bottom: 10px;
}

.kit-card.foundation {
  background-color: #58af6f;
}

.kit-card-reverse.foundation {
  color: #58af6f;
  border: 2px solid #58af6f;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
}

.kit-card.clarity {
  background-color: #2c9ab7;
}
.kit-card-reverse.clarity {
  color: #2c9ab7;
  border: 2px solid #2c9ab7;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
}

.kit-card.flow {
  background-color: #9170e5;
}
.kit-card-reverse.flow {
  color: #9170e5;
  border: 2px solid #9170e5;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
}

.kit-card.presence {
  background-color: #f25c54;
}
.kit-card-reverse.presence {
  color: #f25c54;
  border: 2px solid #f25c54;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
}

.kit-card.trust {
  background-color: #f2c14e;
}
.kit-card-reverse.trust {
  color: #f2c14e;
  border: 2px solid #f2c14e;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
}

.kit-icon-png {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.cta-button-white {
  padding: 12px 24px;
  margin-top: 20px;
  background-color: white;
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.cta-button-white:hover {
  background-color: #e5e5e5;
}

.kit-preview {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
}

.kit-contents ul,
section ul,
section ol {
  padding-left: 20px;
  line-height: 1.6;
}

/*Scorecard*/
.scorecard-body {
  font-family: sans-serif;
  padding: 40px;
  background: #fdfdfd;
}

form {
  max-width: 600px;
  margin: auto;
}

fieldset {
  border: none;
  margin-bottom: 30px;
}

legend {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

label {
  display: block;
  margin: 8px 0;
}

input[type="submit"],
button {
  background-color: #0077cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#result {
  max-width: 600px;
  margin: 40px auto;
  background: #e8f4ff;
  padding: 30px;
  border-radius: 10px;
  display: none;
}

/*Login*/
.login-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.login-form {
  background-color: #f9f9f9;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form label {
  font-weight: bold;
}

.login-form input {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.login-form .cta-button {
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.login-form .cta-button:hover {
  background-color: #222;
}

.form-footer {
  font-size: 0.9rem;
  text-align: center;
  color: #555;
}

/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 14px;
}
