/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #f3f7fb, #d9e6f2);
  color: #333;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffcc00;
}

/* Header */
.header {
  text-align: center;
  background: linear-gradient(to right, #6c63ff, #9048ff);
  color: white;
  padding: 40px 20px;
  border-bottom: 4px solid #403060;
}

.header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.header p {
  font-size: 1.5em;
  margin: 10px 0;
}

.call-to-action {
  display: inline-block;
  background-color: #ff5722;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-to-action:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}

/* Sections */
.section h2 {
  color: #6c63ff;
  font-size: 2.5em;
  border-bottom: 2px solid #d7e0f5;
  margin-bottom: 20px;
}

.book {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book img {
  width: 120px;
  border-radius: 8px;
}

.book:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Student Section */
.student-section {
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  background-color: #ffebee;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.student-section h2 {
  color: #6c63ff;
}

.student-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.student-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #6c8def;
  margin-bottom: 15px;
}

.student-profile p {
  font-size: 1.2em;
  color: #333;
}

/* Footer */
.footer {
  text-align: center;
  background-color: #6c63ff;
  color: white;
  padding: 10px 0;
}