/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #fdfdfd;
}

/* Top Bar */
.top-bar {
    background-color: #0077c8; /* Blue from image */
    color: white;
    padding: 8px 40px;
    font-size: 0.9em;
}

/* Header & Navigation */
.header {
    display: flex;
    flex-direction: column;
    background-color:#ffde00;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
}

.header.sticky {
    position: fixed;
    top: -30px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    width: 100%;
    box-sizing: border-box;
}

.header .logo img {
    height: 40px;
}

/* MODIFIED SECTION: Adjusted navigation styles for responsiveness */
.main-nav {
    flex-grow: 1;
    text-align: center;
}

.main-nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .header-right .search-link {
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

/* NEW SECTION: Hamburger Menu and Mobile Navigation Styles */
.menu-toggle,
.close-menu,
.mobile-search {
    display: none; /* Hide mobile-specific elements by default */
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle {
    display: none; /* Will be shown in media query */
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.hamburger-bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5em;
    color: #333;
}
/* END NEW SECTION */


/* Hero Section */
.hero {
    background-color: #ffde00; /* Yellow from image */
    text-align: center;
    padding: 20px 20px 40px;
    position: relative;
    overflow: hidden;
}
.hero-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-img-left {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 150px;
    opacity: 0.8;
}
.hero-img-right {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 150px;
    opacity: 0.8;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 2.2em;
    color: #333;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero h1::after {
    content: '';
    position: absolute;
    top: -50%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: glare-animation 3s infinite;
}

@keyframes glare-animation {
    0% {
        left: -50%;
    }
    100% {
        left: 230%;
    }
}


/* Category Filters */
.filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.filter-row {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.filters button {
    background: none;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
    color: #555;
    line-height: 1.2;
}
.filters button span {
    font-weight: normal;
    font-size: 0.8em;
}
.filters button:hover {
    color: #000;
}
.filters button.active {
    color: #d9534f;
}

/* Book Carousel/Grid Section */
.book-section {
    padding: 50px 40px;
}
.book-section.green-bg {
    background-color: #006a4e;
    color: #fff;
}
.book-section.light-green-bg {
    background-color: rgb(255, 251, 224);
    color: rgb(0, 97, 62);
}
.book-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}
.book-section .section-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
}

.book-carousel-wrapper {
    position: relative;
}

.book-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.book-carousel::-webkit-scrollbar {
    display: none;
}

.book-carousel-wrapper .carousel-arrow {
    position: absolute;
    top: 100px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    transition: background-color 0.2s;
}

.book-carousel-wrapper .carousel-arrow:hover {
    background-color: white;
}

.book-carousel-wrapper:hover .carousel-arrow {
    display: block;
}

.book-carousel-wrapper .carousel-arrow.prev {
    left: -20px;
}

.book-carousel-wrapper .carousel-arrow.next {
    right: -20px;
}

/* MODIFIED SECTION: Sizing is now applied to the link wrappers */
.book-card-link,
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0; /* Prevent items from shrinking */
}

.book-card-link {
    flex-basis: 16%; /* On desktop, each book link takes up 16% of the container width */
}

.book-card {
    /* Sizing properties removed from here */
    background-color: #006a4e;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    color: #fff;
    transition: transform 0.2s;
    height: 100%; /* Ensure the card fills the link wrapper vertically */
}
/* END MODIFIED SECTION */

.book-card:hover {
    transform: translateY(-5px);
}
.book-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.book-card-info {
    padding: 15px;
}
.book-card h3 {
    font-size: 1em;
    margin: 0 0 10px 0;
    min-height: 40px;
}
.book-card p {
    font-size: 0.9em;
    margin: 5px 0;
    color: #eee;
}

/* Featured Product Section */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: #fff;
    min-height: 600px;
}
.featured-product-info {
    padding: 20px 60px;
}
.featured-product-info h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: #0c2461;
}
.featured-product-info .age, .featured-product-info .rrp {
    font-size: 1.1em;
    margin: 15px 0;
}
.featured-product-info .description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 500px;
}
.explore-links {
    margin-top: 30px;
}
.explore-links p {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}
.explore-links ul {
    list-style: none;
    padding: 0;
}
.explore-links ul li {
    margin-bottom: 8px;
}
.explore-links ul a {
    text-decoration: underline;
    color: #0c2461;
    font-weight: 500;
}
.explore-links ul a.activities {
    color: #d9534f;
}
.featured-product-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}
.featured-product-buttons .btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #0c2461;
    text-align: center;
}
.btn-primary {
    background-color: #0c2461;
    color: #fff;
}
.btn-secondary {
    background-color: #fff;
    color: #0c2461;
}

/* Featured Product Carousel */
.featured-product-carousel-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}
/* NEW: Style for the link inside the featured carousel slide */
.carousel-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.carousel-slide img {
    max-width: 50%;
    max-height: 70%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 4px;
}
.new-sticker {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: #ffde00;
    color: #333;
    font-weight: bold;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.carousel-arrow.prev {
    left: 20px;
}
.carousel-arrow.next {
    right: 20px;
}
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #333;
    cursor: pointer;
}
.dot.active {
    background-color: #333;
}


/* Storytime Section */
.storytime {
    display: flex;
    align-items: center;
    background-color: #4a148c;
    color: #fff;
    padding: 60px;
    gap: 40px;
}
.storytime-info {
    flex: 1;
}
.storytime-info h2 {
    font-size: 2.5em;
}
.storytime-info p {
    font-size: 1.1em;
    max-width: 500px;
}
.storytime-info a {
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: underline;
}
.storytime-video {
    flex: 1;
    text-align: center;
}
.storytime-video img {
    max-width: 100%;
    border-radius: 10px;
}

/* Blog Section Styles */
.blog-section {
    padding: 50px 40px;
    background-color: rgb(246, 246, 248);
    color: rgb(115, 116, 129);
}

.blog-section-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.blog-section-header h2 {
    font-size: 2.2em;
    margin-bottom: 5px;
    color: #333;
}

.blog-section-header p {
    font-size: 1.1em;
    color: #555;
    margin-top: 0;
}

.blog-carousel {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-section .book-carousel-wrapper .carousel-arrow {
    top: 50%;
    transform: translateY(-50%);
}

/* MODIFIED SECTION: Sizing is now applied to the link wrapper */
.blog-card-link {
    flex-basis: 24%; /* On desktop, each blog link takes up 24% of the container width */
}

.blog-post {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    /* Sizing properties removed from here */
    display: flex;
    flex-direction: column;
    min-height: 380px;
    height: 100%; /* Ensure the post fills the link wrapper vertically */
}
/* END MODIFIED SECTION */

.blog-post img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.blog-post-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-post-info .category {
    font-size: 0.8em;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-post-info h3 {
    font-size: 1.2em;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.author-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.author-info span {
    font-size: 0.9em;
    color: #333;
}

.blog-post--news-alert-yellow {
    background-color: #ffde00;
    border: none;
}
.blog-post--news-alert-orange {
    background-color: #f97316;
    border: none;
}
.news-alert-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #1e293b;
}
.news-alert-content .category {
    color: #1e293b;
    font-weight: 600;
}
.news-alert-content h3 {
    font-size: 1.5em;
    color: #1e293b;
    margin: 0;
}
.news-alert-graphic {
    font-size: 2.5em;
    font-weight: 900;
    color: #fff;
    background-color: #3b82f6;
    padding: 10px 15px;
    display: inline-block;
    margin: 20px 0;
    clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%, 10% 50%);
    text-align: center;
}
.blog-post--news-alert-yellow .news-alert-graphic {
    background-color: #8338ec;
}
.blog-post--news-alert-orange .news-alert-graphic {
    background-color: #0077c8;
}

/* NEW SECTION: Book and Blog Detail Page Styles */
.book-detail-container,
.blog-detail-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 40px;
}

.book-detail-page {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.book-detail-cover img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.book-detail-info h1 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 5px;
}

.book-detail-info .subtitle {
    font-size: 1.2em;
    color: #555;
    margin-top: 0;
    margin-bottom: 20px;
}

.book-detail-info .author {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.book-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.book-meta span {
    font-size: 0.9em;
}

.book-detail-info h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #ffde00;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.book-detail-info .description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.buy-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.2em;
    text-align: center;
}

/* Blog Detail Page */
.blog-detail-page {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-detail-header .category {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-detail-header h1 {
    font-size: 2.8em;
    margin: 0;
}

.blog-detail-header .author-info {
    justify-content: center;
    margin-top: 20px;
}

.blog-detail-image {
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.blog-detail-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
}

.blog-detail-content .subtitle {
    font-size: 1.3em;
    color: #111;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Not Found Page Styles */
.not-found {
    text-align: center;
    padding: 80px 20px;
}

.not-found h1 {
    font-size: 3em;
    color: #d9534f;
}

.not-found p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.not-found a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0077c8;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
/* END NEW SECTION */

/* NEW SECTION: Generic Content Page Styles */
.content-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px solid #ffde00;
    padding-bottom: 20px;
}

.page-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Book Grid Styles (for books.php) */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.book-grid .book-card-link {
    /* The link wrapper already has flex-shrink: 0, which is fine */
    /* No need to set flex-basis here as grid handles sizing */
}

.book-grid .book-card {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #eee;
}

.book-grid .book-card p {
    color: #555;
}

/* Activities Page Styles */
.activity-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.activity-content h2 {
    margin-top: 0;
    font-size: 1.8em;
}

.activity-content h4 {
    margin-bottom: 5px;
}

.activity-content ul {
    padding-left: 20px;
    line-height: 1.6;
}

/* Quicklinks Page Styles */
.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.quicklinks-column h4 {
    font-size: 1.4em;
    color: #0077c8;
    border-bottom: 2px solid #0077c8;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.quicklinks-column ul {
    list-style: none;
    padding: 0;
}

.quicklinks-column ul li {
    margin-bottom: 12px;
}

.quicklinks-column ul a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.quicklinks-column ul a:hover {
    text-decoration: underline;
}

/* Schools & About Page Styles */
.schools-content,
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-logo {
    display: block;
    margin: 0 auto 30px auto;
    max-height: 60px;
}

.schools-content h2,
.about-content h2 {
    font-size: 2em;
    margin-top: 40px;
}

.schools-content h3 {
    font-size: 1.5em;
    margin-top: 30px;
}

.schools-content ul {
    padding-left: 20px;
}

/* Fun Facts Page Styles */
.fun-facts-list .fact-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-left: 5px solid #ffde00;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 5px;
}

.fun-facts-list .fact-item h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.fun-facts-list .fact-item p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 0;
}
/* END NEW SECTION */


/* Footer */
.footer {
    background-color: #0c2461;
    color: #fff;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer a:hover {
    opacity: 1;
}
.footer .social-icons a {
    margin-right: 15px;
    font-size: 1.5em;
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #0c2461;
    color: #ccc;
    border-top: 1px solid #2d3b55;
}

/* NEW SECTION: Responsive styles for tablet and mobile devices */
@media (max-width: 992px) {
    .header-main {
        padding: 10px 20px;
    }

    /* Hide the desktop navigation links */
    .main-nav a {
        display: none;
    }

    /* Transform the nav container into a full-screen overlay */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    /* When the nav is active, slide it into view */
    .main-nav.nav-active {
        transform: translateX(0);
    }

    /* Show the links inside the active mobile nav */
    .main-nav.nav-active a {
        display: block;
        font-size: 1.5em;
    }

    /* Show the close button and hamburger menu */
    .close-menu,
    .menu-toggle {
        display: flex;
    }

    /* Hide the desktop search and show the mobile version */
    .desktop-search {
        display: none;
    }
    .mobile-search {
        display: block;
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    /* Adjust section padding for smaller screens */
    .book-section,
    .blog-section {
        padding: 30px 20px;
    }

    /* MODIFIED SECTION: Apply responsive sizing to the link wrappers */
    .book-card-link {
        flex-basis: calc(50% - 10px); /* On mobile, each book link is 50% of the width minus half the gap */
    }

    .blog-card-link {
        flex-basis: 100%; /* On mobile, each blog link is 100% of the width */
    }
    /* END MODIFIED SECTION */

    /* Adjust carousel arrow positions for smaller padding */
    .book-carousel-wrapper .carousel-arrow.prev {
        left: 5px;
    }
    .book-carousel-wrapper .carousel-arrow.next {
        right: 5px;
    }

    /* Stack featured product section on mobile */
    .featured-product {
        grid-template-columns: 1fr;
    }

    .featured-product-info {
        padding: 40px 20px;
    }

    /* Make hero text smaller */
    .hero h1 {
        font-size: 1.8em;
    }

    /* Hide hero illustrations on small screens */
    .hero-illustrations {
        display: none;
    }

    /* Stack storytime section */
    .storytime {
        flex-direction: column;
        padding: 40px 20px;
    }

    /* Stack book detail page */
    .book-detail-page {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .book-detail-info h1 {
        font-size: 2em;
    }

    /* NEW: Add responsive styles for new pages */
    .content-page-container {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2.2em;
    }

    .book-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .activity-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* END NEW */
}
/* END NEW SECTION */

/* NEW SECTION: Form Container Styles (for newsletter.php) */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    cursor: pointer;
}

/* NEW SECTION: Generic Content Styles (for policy pages, etc.) */
.generic-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

.generic-content h2 {
    font-size: 2em;
    margin-top: 40px;
}

.generic-content ul {
    padding-left: 20px;
}

.generic-content a {
    color: #0077c8;
    text-decoration: underline;
}

.generic-content a.btn {
    text-decoration: none;
}
