/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    color: #ecf0f1;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.tagline {
    color: #bdc3c7;
    font-size: 0.9rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 0.5rem;
}

.search-bar input {
    background: transparent;
    border: none;
    color: #ecf0f1;
    padding: 0.5rem 1rem;
    outline: none;
    min-width: 250px;
}

.search-bar input::placeholder {
    color: #bdc3c7;
}

.search-bar button {
    background: #3498db;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background: #2980b9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f39c12;
}

.stat .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Featured Books Section */
.featured-books {
    padding: 4rem 0;
    background: white;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.book-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.book-info {
    text-align: center;
}

.book-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.author {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.book-meta .genre {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.book-meta .rating {
    color: #f39c12;
    font-size: 1rem;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* Genres Showcase */
.genres-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.genre-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.genre-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.genre-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Authors Spotlight */
.authors-spotlight {
    padding: 4rem 0;
    background: white;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.author-card {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-3px);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
}

.author-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.author-genre {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-books {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-bio {
    color: #555;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: #f39c12;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #e67e22;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #3498db;
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
}

.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #3498db;
}

.member-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    line-height: 1.6;
}

.awards-section {
    padding: 4rem 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.award-item {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.award-item p {
    color: #7f8c8d;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details p {
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.contact-details .social-links {
    margin-top: 0.5rem;
}

.contact-details .social-link {
    display: inline-block;
    margin-right: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.office-hours {
    padding: 4rem 0;
    background: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hours-item {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.hours-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.hours-item p {
    color: #7f8c8d;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.content-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Authors Page Styles */
.authors-showcase {
    padding: 4rem 0;
    background: white;
}

.author-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.genre-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.genre-category {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.genre-category:hover {
    transform: translateY(-3px);
}

.genre-category h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.genre-category p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

/* Genres Page Styles */
.genres-overview {
    padding: 4rem 0;
    background: white;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.genre-item {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.genre-item:hover {
    border-color: #3498db;
    transform: translateY(-3px);
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.genre-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.genre-count {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.genre-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.genre-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.genre-link:hover {
    color: #2980b9;
}

.special-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.special-category {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.special-category:hover {
    transform: translateY(-3px);
}

.special-category h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.special-category p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.book-count {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* FAQ Page Styles */
.faq-content {
    padding: 4rem 0;
    background: white;
}

.faq-categories h2 {
    text-align: left;
    margin: 2rem 0 1rem 0;
    color: #2c3e50;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.contact-support {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-support h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-support p {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

/* Help Center Styles */
.help-content {
    padding: 4rem 0;
    background: white;
}

.help-sections h2 {
    text-align: left;
    margin: 2rem 0 1rem 0;
    color: #2c3e50;
}

.help-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.help-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.help-item p {
    color: #555;
    line-height: 1.6;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Feedback Page Styles */
.feedback-content {
    padding: 4rem 0;
    background: white;
}

.feedback-form-section {
    margin-bottom: 3rem;
}

.feedback-form-section h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.feedback-info h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feedback-info p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feedback-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.5;
}

/* Copyright Page Styles */
.copyright-content {
    padding: 4rem 0;
    background: white;
}

/* Consent Checkbox Styles */
.consent-group {
    margin-top: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    cursor: pointer;
}

.consent-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
    margin: 0;
}

.consent-label a {
    color: #3498db;
    text-decoration: underline;
}

.consent-label a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .search-bar {
        width: 100%;
        max-width: 400px;
    }
    
    .search-bar input {
        min-width: auto;
        flex: 1;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .genres-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .authors-grid {
        grid-template-columns: 1fr;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
    
    /* About and Contact page responsive */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* New pages responsive */
    .genres-grid,
    .special-grid,
    .feedback-benefits {
        grid-template-columns: 1fr;
    }
    
    .genre-categories {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-books,
    .genres-showcase,
    .authors-spotlight {
        padding: 2rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* About and Contact page responsive for small screens */
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero,
    .contact-hero {
        padding: 2rem 0;
    }
    
    .about-content,
    .contact-content,
    .team-section,
    .awards-section,
    .faq-section,
    .office-hours {
        padding: 2rem 0;
    }
    
    /* New pages responsive for small screens */
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-content,
    .copyright-content,
    .faq-content,
    .help-content,
    .feedback-content,
    .authors-showcase,
    .author-categories,
    .genres-overview,
    .special-categories {
        padding: 2rem 0;
    }
    
    .checkbox-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .consent-label {
        font-size: 0.8rem;
    }
}
