/* Base reset & layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header/nav */
header {
  background: #2c3e50;
  color: #fff;
  padding: 1rem 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Hero */
.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: #000;
  padding: 4rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}

/* Sections */
section {
  padding: 2rem 0;
}
.features-list,
.pricing-plans {
  display: grid;
  gap: 1.5rem;
}
.features-list {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.pricing-plans {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Feature card */
.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.feature h3 {
  margin-bottom: 0.5rem;
}

/* Pricing card */
.plan {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.plan h3 {
  margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 2rem;
  margin: 1rem 0;
}
.plan ul {
  list-style: disc;
  margin: 1rem 0 0 1rem;
  text-align: left;
}
.plan button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
}

/* About/team */
.team {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.member {
  text-align: center;
}
.member img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Contact */
form {
  display: grid;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button.submit {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
}

/* Download button */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
}
.btn:disabled {
  background: #888;
  cursor: not-allowed;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}

/* agreement row: checkbox + label */
.agreement {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* pushes content to the far right */
  white-space: nowrap;
}

.agreement label {
  white-space: nowrap;        /* Ensures label itself doesn't wrap */
}

/* ensure download button sits below */
.download-btn-container {
  margin-top: 1rem;
}