/* Ebooks (Packages) Section */
.ebooks-section {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
}

.ebooks-section .container {
max-width: 760px; /* Changed from 800px */
margin: 0 auto;
}

.ebooks-section h2 {
font-size: 44px; /* was 36px, +8 */
margin-bottom: 30px;
text-transform: uppercase;
}

/* 2x2 grid for packages */
.ebooks-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px 0; /* 40px vertical gap, 0px horizontal gap */
justify-items: center;
}

.ebook-card {
background-color: #f9f9f9;
border-radius: 24px;
width: 320px;
padding: 24px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
text-align: center;
transition: transform 0.3s ease;
}

.ebook-card:hover {
transform: translateY(-5px);
}

.ebook-card img {
width: 100%;
height: auto;
border-radius: 6px;
margin-bottom: 20px;
}

.ebook-card h3 {
font-size: 32px; /* was 24px, +8 */
margin-bottom: 8px;
}

.ebook-subtitle {
font-size: 18px;
font-style: italic;
margin-bottom: 10px;
}

.ebook-description {
font-size: 14px;
line-height: 1.4;
margin-bottom: 16px;
color: #646464;
}

.ebook-price-row {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 10px;
}

.ebook-price-row .price {
font-size: 20px;
color: #000;
font-weight: bold;
}

.ebook-cta {
margin-top: 30px;
}
