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

:root {
    /* Warm color palette */
    --primary-orange: #FF8C00;
    --secondary-orange: #FFA500;
    --light-orange: #FFD700;
    --accent-yellow: #FFEB3B;
    --light-yellow: #FFF8DC;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --bg-light: #FFF9F0;
    --shadow: rgba(255, 140, 0, 0.1);
    --hover-shadow: rgba(255, 140, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-light);
}

/* Header Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 32px;
    height: 32px;
}

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

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-orange);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--accent-yellow) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-background {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button.primary:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.cta-button.secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Currency Graphics */
.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Casino Animation */
.simple-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.casino-card {
    position: relative;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #FF8C00;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.card-content h3 {
    color: #FFEB3B;
    font-size: 1.8rem;
    margin: 15px 0 10px 0;
    font-weight: bold;
    text-shadow: 0 0 10px #FFEB3B;
}

.card-content p {
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.casino-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.casino-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.casino-icon:nth-child(1) {
    animation-delay: 0s;
}

.casino-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.casino-icon:nth-child(3) {
    animation-delay: 1s;
}

.hero-cta-button {
    background: linear-gradient(145deg, #FF8C00, #FFA500);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    background: linear-gradient(145deg, #FFA500, #FFD700);
}

.card-glow {
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

/* Simple Animations */

/* Keep some animations for other elements */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.sidebar {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
    margin-left: 0;
}

.sidebar h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.toc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toc-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.toc-link:hover {
    color: var(--primary-orange);
    border-left-color: var(--primary-orange);
    background-color: var(--light-yellow);
    padding-left: 1rem;
}

/* Content Area */
.content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    min-height: 100vh;
}

.content h1 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content h2 {
    color: var(--secondary-orange);
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.content h3 {
    color: var(--primary-orange);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table,
.review-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 4px 10px var(--shadow);
}

.comparison-table th,
.review-table th {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td,
.review-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tr:nth-child(even),
.review-table tr:nth-child(even) {
    background-color: var(--light-yellow);
}

.comparison-table tr:hover,
.review-table tr:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Casino Logo Styles */
.casino-logo {
    width: 60px;
    height: 30px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 4px;
    background-color: #2c2c2c;
    padding: 4px 8px;
    object-fit: contain;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-orange) 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 15px var(--shadow);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    min-width: 60px;
}

.info-content {
    flex: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.benefit-card {
    background-color: var(--white);
    border: 2px solid var(--light-orange);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--hover-shadow);
    border-color: var(--primary-orange);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
}

/* Casino Reviews */
.casino-review {
    background-color: var(--light-yellow);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px var(--shadow);
}

.casino-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px var(--shadow);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 6px 20px var(--shadow);
}

.review-features {
    margin-top: 1.5rem;
}

.casino-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--primary-orange);
}

.review-features ul {
    list-style: none;
    padding-left: 0;
}

.review-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.review-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Checklist */
.checklist {
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--light-yellow);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background-color: var(--accent-yellow);
    transform: translateX(5px);
}

.checklist-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    min-width: 30px;
}

.checklist-item h4 {
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

/* FAQ Section */
.faq-section {
    margin: 1.5rem 0;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--light-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px var(--hover-shadow);
}

.faq-item h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-orange);
    color: var(--white);
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-orange);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--light-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: var(--light-yellow);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--hover-shadow);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    background-color: var(--light-yellow);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-orange);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.form-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--hover-shadow);
}

/* Author Profile Styles */
.author-profile {
    max-width: 800px;
    margin: 0 auto;
}

.author-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-yellow), var(--accent-yellow));
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow);
}

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

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-orange);
    object-fit: cover;
}

.author-info h1 {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--light-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.social-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-orange);
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--light-orange);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-text);
    font-weight: 600;
}

.author-bio {
    margin-bottom: 3rem;
}

.author-bio h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.expertise-item {
    padding: 1.5rem;
    background-color: var(--light-yellow);
    border-radius: 10px;
    text-align: center;
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.career-timeline {
    margin-bottom: 3rem;
}

.career-timeline h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-orange);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-weight: bold;
    color: var(--primary-orange);
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding: 1rem;
    background-color: var(--light-yellow);
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    border: 3px solid var(--white);
}

.timeline-content h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.philosophy {
    margin-bottom: 3rem;
}

.philosophy h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.philosophy blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--light-yellow), var(--accent-yellow));
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-orange);
    margin: 2rem 0;
}

.testing-process h4 {
    color: var(--dark-text);
    margin: 2rem 0 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    border: 2px solid var(--light-orange);
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-author {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-yellow), var(--accent-yellow));
    border-radius: 15px;
}

.contact-author h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-button {
    padding: 1rem 2rem;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-2px);
}

.contact-button.secondary {
    background-color: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.contact-button.secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Author Card on Main Page */
.author-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-yellow), var(--accent-yellow));
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.author-card-image {
    flex-shrink: 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    object-fit: cover;
}

.author-card-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.author-card-info h3 {
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.author-card-title {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-card-experience {
    color: var(--light-text);
    font-size: 0.9rem;
}

.author-card-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-profile-link {
    padding: 0.5rem 1rem;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-profile-link:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-1px);
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
}

.social-icon:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-graphic {
        height: 250px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
        margin-bottom: 1rem;
        margin-left: 0;
    }
    
    .sidebar h3 {
        cursor: pointer;
    }
    
    .toc {
        display: none;
    }
    
    .sidebar.active .toc {
        display: flex;
        margin-top: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        margin: 1rem -1rem;
    }
    
    .comparison-table,
    .review-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .review-table th,
    .review-table td {
        padding: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-card-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-card-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content h2 {
        font-size: 1.25rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
}