/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #e0f7fa);
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #0288d1;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

header h1 {
    color: white;
    font-size: 2.5em;
    margin: 0;
}

header u {
    text-decoration: underline dotted;
}

.intro, .why-join, .rewards, .call-to-action {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.intro p a {
    color: #0288d1;
    font-weight: bold;
}

h2 {
    font-size: 2em;
    color: #0288d1;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
}

.benefits-list, .rewards-list {
    list-style: none;
    padding: 0;
}

.benefits-list li, .rewards-list li {
    background: #0288d1;
    color: white;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1em;
}

.benefits-list li .highlight, .rewards-list li .highlight {
    font-weight: bold;
}

.call-to-action form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.call-to-action input[type="text"],
.call-to-action input[type="email"],
.call-to-action input[type="password"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.call-to-action button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.call-to-action button:hover {
    background-color: #f50057;
}

.call-to-action button:active {
    background-color: #c51162;
}

.call-to-action button:nth-child(1) {
    background-color: #ff5722;
}

.call-to-action button:nth-child(1):hover {
    background-color: #e64a19;
}

.call-to-action button:nth-child(1):active {
    background-color: #d84315;
}

.call-to-action button:nth-child(2) {
    background-color: #ffeb3b;
}

.call-to-action button:nth-child(2):hover {
    background-color: #fdd835;
}

.call-to-action button:nth-child(2):active {
    background-color: #fbc02d;
}

.call-to-action button:nth-child(3) {
    background-color: #4caf50;
}

.call-to-action button:nth-child(3):hover {
    background-color: #43a047;
}

.call-to-action button:nth-child(3):active {
    background-color: #388e3c;
}

.call-to-action button:nth-child(4) {
    background-color: #3f51b5;
}

.call-to-action button:nth-child(4):hover {
    background-color: #3949ab;
}

.call-to-action button:nth-child(4):active {
    background-color: #303f9f;
}

#message {
    margin-top: 20px;
    font-size: 1.2em;
    color: red;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
/* Simple Footer Styles */
footer {
    background-color: #0288d1;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.benefits-list li, .rewards-list li {
    font-size: 1.2em;
    margin: 10px 0;
}

.benefits-list li span.highlight,
.rewards-list li span.highlight {
    font-weight: bold;
    font-size: 1.1em;
}
/* === GEO-Friendly Feature Lists === */
.benefits-list,
.rewards-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li,
.rewards-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #f8f9fb;
  border: 1px solid #e2e6ef;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.45;
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  transition: transform .15s ease, box-shadow .15s ease;
}

.benefits-list li:hover,
.rewards-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.benefits-list li .highlight,
.rewards-list li .highlight {
  font-weight: 600;
}

