/* === CSS Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Utility Classes === */
.hidden {
  display: none;
}
.text-center {
    text-align: center;
}
.text-highlight-orange { color: #f97316; }
.text-highlight-blue { color: #3b82f6; }
.text-highlight-red { color: #ef4444; }


/* === General Body Styles === */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #FEFBF6;
    color: #1f2937;
    overflow-x: hidden;
}


/* === Header & Navigation === */
.site-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo {
  height: 50px;
  width: auto;
}
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #374151;
    font-weight: 700;
    transition: color 300ms;
    text-decoration: none;
}
.nav-link:hover {
    color: #f97316;
}
.nav-link-active {
    color: #f97316;
}
.mobile-menu-trigger-wrapper {
    display: flex;
    align-items: center;
}
.mobile-menu-button {
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.menu-icon {
    width: 2rem;
    height: 2rem;
}
.mobile-menu {
    background-color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.mobile-nav-link {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    color: #374151;
    text-decoration: none;
}
.mobile-nav-link:hover {
    background-color: #ffedd5;
}


/* === Container Utility === */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }


/* === Custom Animations === */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}
.animate-gentle-bounce {
    animation: gentle-bounce 5s ease-in-out infinite;
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.animate-scroll-left {
  animation: scroll-left 40s linear infinite;
}


/* === Sections & General Elements === */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 150px;
}
.wave-divider .shape-fill {
    fill: #A7D397;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.btn {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.btn-red { background-color: #ef4444; }
.btn-red:hover { background-color: #dc2626; }
.btn-blue { background-color: #3b82f6; }
.btn-blue:hover { background-color: #2563eb; }
.btn-orange { background-color: #f97316; }
.btn-orange:hover { background-color: #ea580c; }
.btn-funky {
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-funky:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}


/* === Hero Section & Slider === */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    flex-direction: column;
    align-items: center;
}
.slide.active {
    display: flex;
    opacity: 1;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 1rem;
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #fff;
}
.hero-text-content {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hero-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.hero-subheading {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-bottom: 2rem;
}
.hero-image-content {
    position: relative;
    height: 100%;
}
.hero-image-wrapper {
    width: 100%;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.decorative-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: spin-slow 10s linear infinite;
}
.blob-1 { top: -5rem; left: -5rem; }
.blob-2 { top: -5rem; right: -5rem; }
.blob-3 { top: -2.5rem; right: -2.5rem; }
.bouncing-character {
    position: relative;
}
.character-svg {
    width: 100%;
    height: auto;
}
.prev-arrow { left: 0.5rem; }
.next-arrow { right: 0.5rem; }
.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
}
.floating-shape {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.5;
}
.shape-1 { top: 5rem; left: -2.5rem; width: 8rem; height: 8rem; background-color: #93c5fd; }
.shape-2 { bottom: 2.5rem; right: 2.5rem; width: 6rem; height: 6rem; background-color: #fca5a5; }
.shape-3 { top: 50%; right: -2.5rem; width: 4rem; height: 4rem; background-color: #86efac; }


/* === About Section === */
.about-section {
    background-color: #A7D397;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.about-content-wrapper {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.section-heading {
    font-size: 2.25rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 3rem;
}
.section-heading.text-white {
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.about-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.stat-card {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 1rem;
    color: #ffffff;
}
.stat-number {
    display: block;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}


/* === Explore Section === */
.explore-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.explore-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.explore-card {
    width: 16rem;
    height: 16rem;
    border-radius: 9999px;
    background-color: #ffffff;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 500ms ease-in-out;
    text-decoration: none;
}
.explore-card:hover {
    transform: scale(1.1);
}
.explore-card.hover-youtube:hover { background-color: #ef4444; }
.explore-card.hover-ebooks:hover { background-color: #3b82f6; }
.explore-card.hover-manual:hover { background-color: #8b5cf6; }

.explore-card-icon-wrapper {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 500ms ease-in-out;
}
.explore-card:hover .explore-card-icon-wrapper {
    animation: bounce-icon 0.8s ease-in-out infinite;
}
.explore-card-icon {
    width: 100%;
    height: 100%;
    color: #1f2937;
    transition: color 500ms ease-in-out;
}
.explore-card:hover .explore-card-icon {
    color: #ffffff;
}
.explore-card-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.5rem;
    transition: color 500ms ease-in-out;
    text-align: center;
}
.explore-card:hover .explore-card-text {
    color: #ffffff;
}


/* === E-books Section (Home Page) === */
.ebooks-section {
    padding: 5rem 0;
    background-image: linear-gradient(to bottom, #fff7ed, #fdf2f8);
    overflow: hidden;
}
.scroller-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.scroll-track {
    display: flex;
    width: calc(200% + 8rem); 
}
.scroller-inner {
    display: flex;
    gap: 4rem;
    flex-shrink: 0;
    margin-right: 4rem; 
}
.ebook-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ebook-card img {
    width: 14rem;
    height: 18rem;
    border-radius: 0.75rem;
    cursor: pointer;
    border: 4px solid #fff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.ebook-card img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}
.ebook-card-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.75rem;
}


/* === Magical Worlds Section === */
.magical-worlds-section {
    padding: 5rem 0;
    background-color: #FEFBF6;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.content-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.content-column {
    width: 100%;
    display: flex;
    justify-content: center;
}
.content-column.text-content {
    flex-direction: column;
    text-align: center;
}
.image-container-decorative {
    position: relative;
    padding: 1rem;
    max-width: 24rem;
}
.story-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transition: transform 500ms;
}
.story-image:hover {
    transform: scale(1.05);
}
.story-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}
.story-paragraph {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-bottom: 1rem;
}
.story-paragraph.more-margin {
    margin-bottom: 1.5rem;
}


/* === E-BOOKS PAGE STYLES (UPDATED) === */
.page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}
.page-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
}
.book-card-vertical {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.book-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.book-card-vertical-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.book-card-vertical-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.book-card-vertical-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.btn-card-vertical {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    justify-content: center;
}
.btn-card-vertical:hover {
    transform: scale(1.05);
}
.btn-primary-action {
    background-color: #3b82f6;
    color: white;
}
.btn-primary-action:hover {
    background-color: #2563eb;
}
.icon-in-button {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}
.btn-card-vertical:hover .icon-in-button {
    transform: translateX(4px);
}

/* === DOWNLOADS PAGE STYLES === */
.downloads-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}
.download-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.download-card-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.download-card-text {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.btn-download-card {
    width: 100%;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
}
.table-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.table-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}
.action-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.action-cell input {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    width: 100px;
}
.btn-download {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.btn-download:hover {
    background-color: #2563eb;
}
/* DataTables Custom Styles */
#answerKeysTable_filter input {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
}
#answerKeysTable_length select {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    margin: 0 0.5rem;
}

/* === CONTACT PAGE STYLES === */
.contact-circles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
    margin-bottom: 5rem;
}
.contact-circle {
    width: 16rem;
    height: 16rem;
    background-color: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
}
.contact-circle:hover {
    transform: scale(1.1);
}
.contact-circle.hover-green:hover { background-color: #22c55e; }
.contact-circle.hover-blue:hover { background-color: #3b82f6; }
.contact-circle.hover-red:hover { background-color: #ef4444; }
.contact-circle-icon-wrapper {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
}
.contact-circle:hover .contact-circle-icon-wrapper {
    animation: bounce-icon 0.8s ease-in-out infinite;
}
.contact-circle-icon {
    transition: color 0.5s;
}
.icon-green { color: #22c55e; }
.icon-blue { color: #3b82f6; }
.icon-red { color: #ef4444; }
.contact-circle:hover .contact-circle-icon {
    color: #ffffff;
}
.contact-circle-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: #1f2937;
    transition: color 0.5s;
}
.contact-circle:hover .contact-circle-title {
    color: #ffffff;
}
.contact-circle-text {
    color: #4b5563;
    transition: color 0.5s;
}
.contact-circle:hover .contact-circle-text {
    color: #ffffff;
}
.form-container-card {
    max-width: 64rem; /* max-w-6xl */
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.form-image-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.form-wrapper {
    width: 100%;
}
.form-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}
.form-group, .form-group-large {
    margin-bottom: 1rem;
}
.form-group-large {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    color: #374151;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: border-color 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: #fb923c;
}
.btn-submit-form {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.btn-submit-form:hover {
    background-color: #2563eb;
}
.form-image-wrapper {
    width: 100%;
    text-align: center;
}
.form-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.map-section {
    margin-top: 5rem;
}
.map-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}
.map-container {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* === Footer === */
.site-footer {
    background-color: #111827;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-logo {
    height: 5rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 0.25rem;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.footer-nav-link {
    color: white;
    text-decoration: none;
    transition: color 300ms;
}
.footer-nav-link:hover {
    color: #fb923c;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4b5563;
    transition: all 300ms;
    color: white;
    text-decoration: none;
}
.social-icon:hover {
    border-color: transparent;
}
.social-icon.hover-facebook:hover { background-color: #2563eb; }
.social-icon.hover-instagram:hover { background-color: #ec4899; }
.social-icon.hover-youtube-social:hover { background-color: #dc2626; }
.social-icon.hover-twitter:hover { background-color: #38bdf8; }
.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.footer-credit-link {
    font-weight: 600;
    color: #9ca3af;
    text-decoration: none;
    transition: color 300ms;
}
.footer-credit-link:hover {
    color: #ffffff;
}


/* === Responsive Styles === */
@media (min-width: 768px) {
    .desktop-menu { display: flex; }
    .mobile-menu-trigger-wrapper, .mobile-menu { display: none !important; } 
    .slide { flex-direction: row; }
    .hero-text-content {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
    }
    .hero-image-content { width: 50%; }
    .hero-heading { font-size: 4.5rem; line-height: 1; }
    .page-title { font-size: 4.5rem; }
    .prev-arrow { left: 1.25rem; }
    .next-arrow { right: 1.25rem; }
    .section-heading { font-size: 3rem; line-height: 1; }
    .explore-cards-container { flex-direction: row; gap: 3rem; }
    .explore-card { padding: 2rem; }
    .content-columns { flex-direction: row; }
    .content-column { width: 50%; }
    .content-column.text-content { text-align: left; }
    .btn-download-card { width: auto; }
    .download-card { padding: 3rem; }
    .contact-circles-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    .form-image-layout { flex-direction: row; }
    .form-wrapper { width: 50%; }
    .form-image-wrapper { width: 50%; }
    .ebooks-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (min-width: 1024px) {
    .downloads-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


