/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3e50;
    --secondary-color: #7A9D96;
    --accent-color: #DC6E1D;
    --accent-secondary: #CAE4DB;
    --dark-charcoal: #1a2332;
    --silver: #9CA3AF;
    --text-color: #1F2937;
    --light-text: #6B7280;
    --bg-light: #F9FAFB;
    --bg-gradient: linear-gradient(135deg, #2d3e50 0%, #7A9D96 100%);
    --border-color: #E5E7EB;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand a {
    display: block;
    text-decoration: none;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-brand .logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: var(--white);
    padding: 5rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #7A9D96;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-books-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
}

.hero-book-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-book-link {
    display: block;
    transition: transform 0.3s ease;
}

.hero-book-link:hover {
    transform: translateY(-5px);
}

.book-cover-hero {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.book-cover-hero:hover {
    transform: scale(1.05);
}

.award-badge-container {
    text-align: center;
    background: transparent;
}

.award-badge-container a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.award-badge-hero {
    width: 160px;
    height: auto;
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 15px rgba(220, 110, 29, 0.4));
    animation: badge-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.award-badge-container a:hover .award-badge-hero {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 25px rgba(220, 110, 29, 0.7));
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 15px rgba(220, 110, 29, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 20px rgba(220, 110, 29, 0.6));
    }
}

/* Home Books Section */
.home-books {
    padding: 5rem 0;
    background: #f8f9fa;
}

.books-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.book-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.book-item-cover {
    position: relative;
    width: 250px;
}

.book-item-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.book-status {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-status.available {
    background: #DC6E1D;
    color: white;
}

.book-status.development {
    background: #7A9D96;
    color: white;
}

.coming-soon-placeholder {
    background: linear-gradient(135deg, #2d3e50 0%, #3a4f60 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    aspect-ratio: 2/3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.placeholder-content p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #DC6E1D;
    line-height: 1.5;
}

.book-item-info {
    display: flex;
    flex-direction: column;
}

.book-item-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.book-number {
    color: #7A9D96;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.book-item-info p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.book-item-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Book List Badge */
.book-list-badge {
    text-align: center;
    padding: 1rem 0;
}

.award-badge-list {
    width: 150px !important;
    height: auto;
    background: transparent;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 3px 10px rgba(220, 110, 29, 0.3));
    transition: all 0.3s ease;
}

.award-badge-list:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(220, 110, 29, 0.5));
}

/* Home Author Section */
.home-author {
    padding: 5rem 0;
    background: white;
}

.author-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.author-image-container {
    position: relative;
}

.author-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.author-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.author-info p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Home CTA Section */
/* Reviews Section */
.home-reviews {
    padding: 1rem 0;
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
    overflow: hidden;
}

.home-reviews .section-title {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.review-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.review-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
    border: 1px solid #2d3e50;
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 600;
}

.author-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #DC6E1D 0%, #E88D3E 100%);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 110, 29, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-secondary-light {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.btn-secondary-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    background: linear-gradient(135deg, #2d3e50 0%, #3a4d5f 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== FEATURED SECTION ===== */
.featured {
    background-color: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.featured-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.featured-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.featured-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '→';
    transition: var(--transition);
}

.card-link:hover {
    color: var(--accent-secondary);
}

.card-link:hover::after {
    transform: translateX(5px);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-preview-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-preview-text p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.journey-section {
    margin-bottom: 4rem;
}

.journey-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #DC6E1D, #7A9D96, #CAE4DB);
    border-radius: 3px;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 45%;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #DC6E1D, #E88D3E);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-item p {
    color: var(--light-text);
}

.philosophy-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.philosophy-card p {
    color: var(--light-text);
}

/* Awards Section */
.awards-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(220, 110, 29, 0.05) 0%, rgba(125, 157, 150, 0.05) 100%);
    border-radius: 20px;
}

.awards-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.award-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.award-badge-large {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 15px rgba(220, 110, 29, 0.3));
    transition: all 0.3s ease;
}

.award-item:hover .award-badge-large {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 25px rgba(220, 110, 29, 0.5));
}

.award-details h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.award-book {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.award-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.award-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.award-item:hover .award-link {
    gap: 1rem;
}

/* Responsive Awards */
@media (max-width: 768px) {
    .award-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .award-badge-large {
        width: 150px;
    }
}

/* ===== BOOKS PAGE ===== */
.books-content {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.books-content .books-showcase {
    margin-top: 0;
}

/* ===== BLOG PAGE ===== */
.blog-content {
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.blog-image {
    height: 250px;
    background: linear-gradient(135deg, #2d3e50 0%, #4a5f70 50%, #5a6f80 100%);
    position: relative;
}

.blog-image::after {
    content: '✍️';
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.blog-category {
    background: linear-gradient(135deg, #7A9D96, #DC6E1D);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.blog-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
}

.blog-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* ===== AUDIO/PODCASTS PAGE ===== */
.audio-content {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.audio-section {
    margin-bottom: 5rem;
}

.audio-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

/* Audiobook Card */
.audiobook-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.audiobook-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.audiobook-cover {
    width: 250px;
}

.audiobook-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.audiobook-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.audiobook-label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.audiobook-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.audio-sample-box {
    background: #f8f9fa;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.audio-sample-box:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(220, 110, 29, 0.15);
}

.sample-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sample-text {
    flex-grow: 1;
    color: var(--text-color);
    font-weight: 500;
}

.audio-sample-box .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
}

.audiobook-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Podcast Card */
.podcast-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    text-align: center;
}

.podcast-card-large {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    transition: var(--transition);
}

.podcast-card-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.podcast-cover {
    width: 250px;
    grid-column: 1;
    grid-row: 1;
}

.podcast-info {
    grid-column: 2;
    grid-row: 1;
}

.podcast-platforms {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 2px solid var(--border-color);
    padding-top: 2rem;
}

.podcast-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.podcast-info {
    display: flex;
    flex-direction: column;
}

.podcast-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: left;
}

.podcast-label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: left;
}

.podcast-info .podcast-description {
    text-align: left;
}

.podcast-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.podcast-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.podcast-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-platforms h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.platform-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-logo-link {
    display: block;
    transition: var(--transition);
    opacity: 0.8;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.platform-logo-link:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.platform-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: var(--transition);
    display: block;
}

.platform-logo-link:hover .platform-logo {
    filter: brightness(1.1);
}

/* Audio Features Grid */
.audio-info {
    max-width: 1000px;
    margin: 0 auto;
}

.audio-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.audio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audio-feature {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.audio-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audio-feature h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.audio-feature p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===== EVENTS PAGE ===== */
.events-content {
    background-color: var(--bg-light);
}

.events-list {
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.event-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.event-card.past {
    opacity: 0.6;
}

.event-date {
    background: linear-gradient(135deg, #DC6E1D 0%, #E88D3E 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 110, 29, 0.3);
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-day {
    font-size: 3rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.event-year {
    font-size: 1rem;
}

.event-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-location,
.event-time {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--light-text);
    margin: 1rem 0;
}

.event-status {
    display: inline-block;
    background-color: var(--light-text);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--light-text);
    margin: 0;
}

.social-connect h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #7A9D96, #CAE4DB);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 600;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 157, 150, 0.4);
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 157, 150, 0.15);
}

/* Simplified Contact Page */
.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-email {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.contact-email h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-email p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 110, 29, 0.1), rgba(220, 110, 29, 0.05));
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.email-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 110, 29, 0.3);
}

.social-connect {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.social-connect h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Newsletter Signup Box on Contact Page */
.newsletter-signup-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.newsletter-signup-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-signup-box p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.newsletter-form-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Hide MailerLite default heading on contact page */
.newsletter-form-container .ml-form-embedBody .ml-form-embedContent,
.newsletter-form-container .ml-form-embedBody h4,
.newsletter-form-container .ml-form-embedBody .ml-form-embedContent p {
    display: none !important;
}

.newsletter-form-container .ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
}

.newsletter-form-container .ml-form-embedBody {
    padding: 0 !important;
}

.newsletter-form-container .ml-form-embedSubmit button {
    background-color: var(--accent-color) !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.newsletter-form-container .ml-form-embedSubmit button:hover {
    background-color: #c45f17 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 110, 29, 0.4) !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.social-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.social-icon:hover::after {
    opacity: 1;
    bottom: -40px;
}

.contact-form textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC6E1D, #7A9D96, #CAE4DB);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Footer Logo */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-width: 250px;
    height: auto;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: none;
    background: transparent;
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
    mix-blend-mode: lighten;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 110, 29, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar .nav-menu {
        display: none !important;
        position: absolute;
        left: 0;
        top: 100%;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        padding: 2rem 0;
    }

    .navbar .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        color: var(--white) !important;
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-preview-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        margin-left: 2rem !important;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-date {
        margin: 0 auto;
        max-width: 150px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-social-icons {
        gap: 0.8rem;
    }

    /* Audio Page Mobile Fixes */
    .audiobook-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .audiobook-cover {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .audiobook-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .audio-sample-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .sample-text {
        font-size: 0.9rem;
    }

    .audiobook-actions {
        justify-content: center;
    }

    .podcast-card-large {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .podcast-cover {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        grid-column: 1;
        grid-row: 1;
    }

    .podcast-info {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
    }

    .podcast-info h3 {
        text-align: center;
    }

    .podcast-platforms {
        grid-column: 1;
        grid-row: 3;
        padding-top: 1.5rem;
    }

    .platform-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-grid,
    .books-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Responsive for enhanced home page */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .book-cover-hero {
        max-width: 300px;
    }
    
    .books-showcase {
        grid-template-columns: 1fr;
    }
    
    .author-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .book-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-item-cover {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Book Detail Page Styles */
.book-detail-content {
    padding: 3rem 0;
}

.book-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.book-detail-sidebar {
    position: sticky;
    top: 100px;
}

.book-cover-large {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.book-cover-large.coming-soon-placeholder {
    background: linear-gradient(135deg, #2d3e50 0%, #3a4f60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    aspect-ratio: 2/3;
    width: 100%;
}

.book-cover-large.coming-soon-placeholder .placeholder-content {
    z-index: 1;
    position: relative;
}

.book-cover-large.coming-soon-placeholder .book-status {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
}

.book-cover-large img {
    width: 100%;
    height: auto;
    display: block;
}

.book-award-badge {
    text-align: center;
    margin: -1rem 0 2rem 0;
}

.book-award-badge a {
    display: inline-block;
    text-decoration: none;
}

.award-badge-book-page {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(220, 110, 29, 0.4));
    transition: all 0.3s ease;
}

.book-award-badge a:hover .award-badge-book-page {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 25px rgba(220, 110, 29, 0.6));
}

.book-cover-large.coming-soon-cover-large {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #3a4f60 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-large.coming-soon-cover-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(202, 228, 219, 0.03) 10px,
            rgba(202, 228, 219, 0.03) 20px
        );
    pointer-events: none;
}

.coming-soon-notice {
    background: linear-gradient(135deg, #2d3e50 0%, #3a4f60 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 2.5rem;
}

.notice-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.coming-soon-notice h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.coming-soon-notice p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coming-soon-notice .btn {
    margin-top: 1rem;
}

.book-meta-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.book-meta-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.book-meta-box p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.book-cta-box p + .btn {
    margin-top: 1.8rem;
}

.book-purchase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    margin-bottom: 1.5rem;
}

.book-purchase-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.book-purchase-section-main {
    background: linear-gradient(135deg, rgba(220, 110, 29, 0.05) 0%, rgba(125, 157, 150, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.purchase-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.purchase-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.purchase-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    min-height: 90px;
}

.purchase-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.purchase-btn-amazon-us {
    border-color: #FF9900;
}

.purchase-btn-amazon-us:hover {
    background: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    border-color: #FF9900;
}

.purchase-btn-amazon-us:hover .btn-content {
    color: var(--white);
}

.purchase-btn-amazon-uk {
    border-color: #146EB4;
}

.purchase-btn-amazon-uk:hover {
    background: linear-gradient(135deg, #146EB4 0%, #1E88E5 100%);
    border-color: #146EB4;
}

.purchase-btn-amazon-uk:hover .btn-content {
    color: var(--white);
}

.purchase-btn-audible {
    border-color: #F56B00;
}

.purchase-btn-audible:hover {
    background: linear-gradient(135deg, #F56B00 0%, #FF8533 100%);
    border-color: #F56B00;
}

.purchase-btn-audible:hover .btn-content {
    color: var(--white);
}

.btn-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.purchase-btn-audible .btn-logo {
    height: 40px !important;
    margin-left: 0;
    transform: none !important;
}

.purchase-btn:hover .btn-logo {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: color 0.3s ease;
    text-align: right;
    flex: 1;
}

.btn-label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-store {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.purchase-btn:hover .btn-label,
.purchase-btn:hover .btn-store {
    color: var(--white);
}

.btn-block {
    width: 100%;
    text-align: center;
    display: block;
}

.book-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-links .btn {
    text-align: center;
    width: 100%;
}

.book-section {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.book-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.book-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.book-section:first-of-type h2 {
    margin-top: 0;
}

.book-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.book-section p:last-of-type {
    margin-bottom: 0;
}

/* Add spacing when paragraph is followed by a button */
.book-section p + .btn {
    margin-top: 1.8rem;
}

.fans-of-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.fan-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.fan-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.fan-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fan-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.theme-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.theme-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.theme-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.theme-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Characters Page Styles */
.characters-content {
    padding: 3rem 0;
}

.characters-intro {
    margin-bottom: 2rem;
}

.characters-section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 2rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.character-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.character-card.antagonist {
    border-left: 4px solid #c41e3a;
}

.character-card.supporting {
    border-left: 4px solid var(--secondary-color);
}

.character-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px !important;
    overflow: hidden;
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.character-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 62, 80, 0.95), transparent);
    padding: 2rem 1.5rem 1rem;
    color: var(--white);
}

.character-name-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    line-height: 1.3;
}

.character-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #DC6E1D;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.character-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a4f60 100%);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.character-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    line-height: 1.3;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.antagonist-badge {
    background: rgba(196, 30, 58, 0.9);
}

.supporting-badge {
    background: rgba(122, 157, 150, 0.9);
}

.character-body {
    padding: 1.5rem;
}

.character-body p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.character-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.character-meta p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #333;
}

.character-meta strong {
    color: var(--primary-color);
}

/* Featured Series Section */
.featured-series {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1419 0%, #1a2332 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(122, 157, 150, 0.1);
    border: 1px solid rgba(122, 157, 150, 0.3);
    border-radius: 50px;
    color: #7A9D96;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.series-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.series-card:hover {
    transform: translateY(-10px);
    border-color: #DC6E1D;
    box-shadow: 0 20px 60px rgba(220, 110, 29, 0.2);
}

.series-card-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.series-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.series-card:hover .series-card-image img {
    transform: scale(1.05);
}

.series-card-image.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-card-image .coming-soon-cover {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #3a4f60 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.series-card-image .coming-soon-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(202, 228, 219, 0.03) 10px,
            rgba(202, 228, 219, 0.03) 20px
        );
    pointer-events: none;
}

.series-card-image .coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.series-card-image .coming-soon-cover h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.series-card-image .coming-soon-cover p {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.series-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #DC6E1D, #e89a5e);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(220, 110, 29, 0.4);
    z-index: 10;
}

.badge-development {
    background: linear-gradient(135deg, #7A9D96, #a5c4bd);
}

.series-card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.series-card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.series-subtitle {
    color: #7A9D96;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.series-card-content > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    flex-grow: 1;
}

.series-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    padding: 0.5rem 1rem;
    background: rgba(122, 157, 150, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

/* About Preview Enhancement */
.about-preview {
    padding: 1rem 0;
    background: #1a2332;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-image .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(122, 157, 150, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-preview-text > p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.author-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 110, 29, 0.1);
    border: 2px solid rgba(220, 110, 29, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.highlight-item span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive adjustments for new pages */
@media (max-width: 968px) {
    .book-detail-grid {
        grid-template-columns: 1fr;
    }

    .book-detail-sidebar {
        position: relative;
        top: 0;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .book-purchase-section-main {
        padding: 1.5rem;
    }

    .purchase-buttons {
        flex-direction: column;
    }

    .purchase-btn {
        width: 100%;
        padding: 1rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-books-row {
        gap: 0.75rem;
    }
    
    .hero-book-group {
        flex: 0 0 48%;
        max-width: 48%;
    }
    
    .book-cover-hero {
        max-width: 100%;
    }
    
    .award-badge-hero {
        width: 80%;
        max-width: 120px;
    }
}

/* ===== SAMPLE DOWNLOAD MODAL ===== */
.sample-download-btn-container {
    margin-bottom: 1.5rem;
}

.sample-download-btn-container .btn {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sample-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sample-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sample-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sample-modal-overlay.active .sample-modal {
    transform: scale(1);
}

.sample-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--light-text);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.sample-modal-close:hover {
    color: var(--accent-color);
}

.sample-modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: center;
}

.sample-modal-content > p {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.sample-modal-content .ml-embedded {
    margin-top: 1rem;
}

/* Override MailerLite form styles to match site */
.sample-modal-content .ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
}

.sample-modal-content .ml-form-embedBody {
    padding: 0 !important;
}

/* Hide MailerLite's default heading and description - we use our own */
.sample-modal-content .ml-form-embedBody .ml-form-embedContent,
.sample-modal-content .ml-form-embedBody h4,
.sample-modal-content .ml-form-embedBody .ml-form-embedContent p {
    display: none !important;
}

.sample-modal-content .ml-form-embedSubmit button {
    background-color: var(--accent-color) !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.sample-modal-content .ml-form-embedSubmit button:hover {
    background-color: #c45f17 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 110, 29, 0.4) !important;
}

@media (max-width: 768px) {
    .sample-modal {
        padding: 1.5rem;
        width: 95%;
    }
    
    .sample-modal-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== LEGAL PAGES (Privacy & Cookie Policy) ===== */
.legal-content {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--light-text);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--light-text);
}

.cookie-table a {
    color: var(--accent-color);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--white);
    opacity: 0.9;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cookie-link:hover {
    opacity: 1;
}

.cookie-accept-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept-btn:hover {
    background: #c45f17;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 110, 29, 0.4);
}

/* Footer Legal Links */
.footer-legal-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-divider {
    margin: 0 0.75rem;
    opacity: 0.5;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-content p {
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
