.course-container {
    background-color: #f9f9f9; /* Light grey background */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Inner spacing */
    margin: 20px 0; /* Space around the section */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.course-container h2 {
    color: #333; /* Darker text color */
    font-size: 1.8rem; /* Larger font size for heading */
    margin-bottom: 15px; /* Space below heading */
    text-align: center; /* Centered heading */
}

.course-container p {
    color: #555; /* Slightly lighter text color */
    font-size: 1rem; /* Standard paragraph size */
    line-height: 1.6; /* Better readability */
    margin-bottom: 15px; /* Space below paragraph */
    text-align: center; /* Center align for introductory text */
}

.course-container ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* No padding */
    text-align: center; /* Center-align list */
}

.course-container ul li {
    display: inline-block; /* Inline list items */
    margin: 10px 15px; /* Spacing between items */
}

.course-container ul li a {
    color: #007bff; /* Blue link color */
    font-weight: bold; /* Bold text */
    text-decoration: none; /* No underline */
    font-size: 1rem; /* Standard size */
    transition: color 0.3s ease; /* Smooth color change on hover */
}

.course-container ul li a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline on hover */
}
.ebook-callout {
  background: #fefefe;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin: 60px auto;
  max-width: 700px;
}

.ebook-inner {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ebook-icon {
  font-size: 4.5rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.ebook-inner h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.ebook-inner p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.telegram-btn {
  display: inline-flex;
  align-items: center;
  background: #0088cc;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.telegram-btn i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.telegram-btn:hover {
  background: #f2f2f2;
  color: #005c8a;
}
@media (max-width: 480px) {
	.ebook-callout {
	  padding: 40px 20px;
	  margin: 60px auto;
	  max-width: 400px;
	}

	.ebook-inner {
	  max-width: 600px;
	  margin: auto;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}

	.ebook-icon {
	  font-size: 4.5rem;
	  color: #ff6b6b;
	  margin-bottom: 15px;
	}

	.ebook-inner h2 {
	  font-size: 1.5rem;
	  font-weight: bold;
	  color: #222;
	  margin-bottom: 10px;
	}

	.ebook-inner p {
	  font-size: 0.8rem;
	  color: #555;
	  line-height: 1.6;
	  margin-bottom: 20px;
	}
	.telegram-btn {
	  padding: 12px 20px;
	  font-size: 0.8rem;
	}
}