:root {
  --bg: #f5f3f0;
  --text: #111111;
  --accent: #e2652b;
  --muted: #666666;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
header {
  padding: 1.5rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.logo {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.4rem;
}

nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
}

.btn-primary {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-disabled {
  pointer-events: none; /* Prevents clicks */
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--muted);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: default;      /* Change cursor to indicate it's not clickable */
}

.btn-disabled:hover {
  opacity: 0.9;
}

/* Layout */
main {
  padding: 3rem 4vw 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.intro {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  /* align-items: center; */
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

.hero p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Cards & grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.25rem 1.3rem;
  border: 1px solid #e3e3e3;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Steps */
.step {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.25rem 1.3rem;
  border: 1px solid #e3e3e3;
  margin-bottom: 1.75rem;
}

.step .label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* Footer */
footer {
  border-top: 1px solid #ddd;
  padding: 1.5rem 4vw;
  font-size: 0.85rem;
  color: var(--muted);
  background: #ffffff;
  margin-top: 2rem;
}

footer div {
  //display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-align: center;
}

/* Table */
table, th, td {
  border: 1px solid white;
  border-collapse: collapse;
}
th, td {
  padding: 5px;
  background-color: #FFFFFF;
}

/* Responsive */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  nav a {
    margin-left: 1rem;
  }
}

/* Form */
    /* Form container */
    .form-container {
        max-width: 600px;
        background: #fff;
        margin: 40px auto;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

/* Form labels and inputs */
    label {
        display: block;
        margin-bottom: 6px;
        font-weight: bold;
        color: #444;
    }

    input, select, textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        box-sizing: border-box;
    }

    input:focus, select:focus, textarea:focus {
        border-color: #006699;
        outline: none;
        box-shadow: 0 0 5px rgba(0,102,153,0.3);
    }

    /* Submit button */
    button {
        background-color: #006699;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
    }

    button:hover {
        background-color: #004d66;
    }

