/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero Section Styling */
.hero-section {
  background: linear-gradient(rgba(230, 255, 250, 0.9), rgba(230, 255, 250, 0.9)), url('/images/15strategieshero.jpg') no-repeat center center/cover;
  color: #333; /* Text color */
  padding: 100px 20px; /* Padding for content */
  text-align: center; /* Center align text */
}
.hero-section h1 {
  font-size: 3rem; /* Large heading */
  margin-bottom: 20px; /* Space below the heading */
}
.hero-section p {
  font-size: 1.2rem; /* Medium-sized paragraph text */
  margin-bottom: 20px; /* Space below the paragraph */
}
.cta-button {
  background-color: #ff6f61; /* Warm red button */
  border: none;
  padding: 15px 30px; /* Button padding */
  font-size: 1.2rem; /* Button text size */
  color: #fff; /* White text on button */
  border-radius: 50px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}
.cta-button:hover {
  background-color: #e05b50; /* Darker red on hover */
}
.countdown-timer {
  font-size: 2rem; /* Timer text size */
  font-weight: bold; /* Bold font */
  color: #ff6f61; /* Warm red color for urgency */
  margin: 20px 0 30px; /* Space above and below the timer */
}
/* Statistics Section Styling */
#stats {
  background-color: #fffef7;
  padding: 60px 20px;
  text-align: center;
}
#stats h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px; /* Add 50px space below the heading */
}
.stat-item {
  margin: 20px 0;
}
.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Pain Points Section Styling */
#pain-points {
  margin-bottom: 50px; /* Add space between this section and the next */
}
#pain-points .resized-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
}
#pain-points .pointers p {
  font-family: 'Georgia', serif; /* Professional font */
  font-size: 1.1rem; /* Larger font size */
  line-height: 1.6; /* Improved readability */
  text-align: justify; /* Justified text */
  margin-bottom: 15px; /* Space between pointers */
}
.icon-red {
  color: #ff4d4d; /* Red icon for pain points */
}

/* Solution Section Styling */
#solution {
  margin-bottom: 50px; /* Add space between this section and the next */
}
#solution .resized-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
}
#solution .pointers p {
  font-family: 'Georgia', serif; /* Professional font */
  font-size: 1.1rem; /* Larger font size */
  line-height: 1.6; /* Improved readability */
  text-align: justify; /* Justified text */
  margin-bottom: 15px; /* Space between pointers */
}
.icon-green {
  color: #4caf50; /* Green icon for solutions */
}

/* Testimonials Section Styling */
#testimonials {
  background-color: #f7f2db;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-card {
  background-color: #fffef7;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Action Section Styling */
#action {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.ebook-cover img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
#footer {
  background-color: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

/* Countdown Timer */
.countdown-timer {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6f61;
  margin: 20px 0 30px; /* Add 30px space below the timer */
}
.cta-button {
  background-color: #ff6f61;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #e05b50;
}