/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}

/* Main Title */
.main-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #222222;
  margin-bottom: 20px;
}

/* Hero Image */
.hero-image {
  width: 100%;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Email Form */
.email-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.email-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.email-form input[type="email"]::placeholder {
  color: #999999;
}

.email-form input[type="email"]:focus {
  outline: none;
  border-color: #4caf50;
}

.email-form button {
  width: 100%;
  padding: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: #4caf50;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #45a049;
}

.spam-notice {
  text-align: center;
  font-size: 12px;
  color: #666666;
  margin-top: 10px;
}

/* Resources Section */
.resources {
  margin: 40px 0;
}

.resource-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.resource-text {
  flex: 1;
  min-width: 200px;
}

.resource-text h2 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}

/* Resource Cards */
.resource-card {
  width: 180px;
  min-width: 180px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-badge {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.pdf-icon {
  background-color: #d32f2f;
  color: white;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 2px;
  font-weight: 600;
}

.youtube-icon {
  background-color: #d32f2f;
  color: white;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 2px;
}

.free-badge {
  background-color: #4caf50;
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
}

.free-badge-red {
  background-color: #ff6b6b;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: 700;
  transform: rotate(15deg);
  display: inline-block;
}

.resource-card h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-description {
  font-size: 10px;
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.4;
}

.signature {
  width: 80px;
  height: auto;
  margin-top: 5px;
}

.card-red {
  border-color: #ffcccc;
}

.youtube-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #d32f2f;
  color: white;
  font-size: 8px;
  padding: 2px 4px;
  border-radius: 2px;
}

/* Benefits Section */
.benefits {
  margin: 30px 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.checkmark {
  color: #4caf50;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list li strong {
  color: #333333;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #666666;
}

.footer a {
  color: #4caf50;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .main-title {
    font-size: 26px;
  }

  .resource-row {
    flex-direction: column;
    text-align: center;
  }

  .resource-text {
    text-align: center;
  }

  .resource-text h2 {
    font-size: 20px;
  }

  .email-form button {
    font-size: 16px;
  }

  .benefits-list li {
    font-size: 14px;
  }
}
