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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}

.logo:visited {
    color: white;
}

.logo:hover,
.logo:focus {
    text-decoration: none;
    opacity: 0.9;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle h2 {
    font-size: 1.8rem;
    color: #991b1b;
    margin-bottom: 1.5rem;
}

.hero-subtitle p {
    font-size: 1.1rem;
    color: #7f1d1d;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-text {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #991b1b;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2rem;
    text-align: center;
}

/* SEO Notes Section (align spacing with other sections) */
.seo-notes {
    padding: 4rem 0;
    background: white;
}

/* Remove bold for SEO notes text only */
.seo-notes .warning-text,
.seo-notes .warning-text p {
    font-weight: 400;
}

/* Responsibility Section */
.responsibility {
    padding: 4rem 0;
    background: white;
}

.responsibility-content p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-box p {
    font-size: 1.1rem;
    color: #991b1b;
    margin: 0;
}

/* Prices Section */
.prices {
    padding: 4rem 0;
    background: #f9fafb;
}

.prices-content p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem-icon {
    font-size: 1.5rem;
    color: #dc2626;
}

.conclusion-box {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-box p {
    font-size: 1.1rem;
    color: #991b1b;
    margin: 0;
}

/* Transparency Section */
.transparency {
    padding: 4rem 0;
    background: white;
}

.transparency-content p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.transparency-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.transparency-icon {
    font-size: 1.5rem;
    color: #dc2626;
    margin-top: 0.2rem;
}

.transparency-warning {
    background: #fee2e2;
    border: 2px solid #dc2626;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.transparency-warning p {
    font-size: 1.1rem;
    color: #991b1b;
    margin: 0;
}

/* Conclusion Section */
.conclusion {
    padding: 4rem 0;
    background: #f9fafb;
}

.problems-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    justify-content: center;
}

.conclusion-text {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-text p {
    font-size: 1.1rem;
    color: #991b1b;
    margin: 0;
}

/* Final Warning Section */
.final-warning {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.warning-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2rem;
    text-align: center;
}

.final-warning-content .warning-text {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-warning-content .warning-text p {
    font-size: 1.2rem;
    color: #991b1b;
    margin: 0;
}

/* Smaller text specifically for SEO notes section */
.seo-notes .warning-text p {
    font-size: 1rem;
}

/* Neutralize background/border for SEO notes */
.seo-notes .warning-text {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
}

.seo-notes .warning-text p {
    color: #374151;
}

/* Read more spoiler styles */
.read-more {
    margin-top: 0.75rem;
}

.read-more-summary {
    cursor: pointer;
    color: #dc2626;
    font-weight: 600;
    list-style: none;
}

.read-more-summary::-webkit-details-marker {
    display: none;
}

.read-more-content {
    margin-top: 0.75rem;
}

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

.footer-content {
    text-align: center;
}

.footer-warning {
    background: #374151;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-warning p {
    font-size: 0.9rem;
    color: #d1d5db;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .problems-list {
        grid-template-columns: 1fr;
    }
    
    .transparency-problems {
        grid-template-columns: 1fr;
    }
    
    .problems-summary {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }

    .seo-notes {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .checklist-item,
    .problem-item,
    .transparency-item,
    .problem-summary-item {
        padding: 1rem;
    }
    
    .warning-box,
    .conclusion-box,
    .transparency-warning,
    .conclusion-text,
    .final-warning-content .warning-text {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects */
.nav-link,
.footer-link {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.nav-link:focus,
.footer-link:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .final-warning {
        background: white;
    }
}