
body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #2c3e50;
    font-size: 18px;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

h1, h2, h3 {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    margin-bottom: 1.2em;
    margin-top: 1.5em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.8em;
    text-align: center;
    border-bottom: 4px solid #0056b3;
    padding-bottom: 20px;
    margin-bottom: 2em;
    margin-top: 0;
    color: #0056b3;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2em;
    border-left: 5px solid;
    padding-left: 15px;
    margin-top: 2.5em;
    margin-bottom: 1.5em;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5em;
    text-align: left;
    line-height: 1.8;
    font-size: 1.05em;
    color: #34495e;
    text-indent: 0;
}

p:first-of-type {
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: 400;
}

section p:first-child {
    margin-top: 0;
}

ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2em;
    padding-left: 0;
}

ol {
    margin-bottom: 2em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
    line-height: 1.7;
    color: #34495e;
    text-align: left;
}

ul li:before {
    content: "▸";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

ol li {
    padding-left: 0.5em;
}

li strong {
    color: #2c3e50;
    font-weight: 600;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img.content-image {
    display: block;
    max-width: 100%; /* Makes image responsive */
    height: auto;
    margin: 20px auto; /* Center image */
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #218838;
    text-decoration: none;
}

/* Article Sections Styling */
section {
    margin-bottom: 3em;
    padding: 1.5em 0;
}

section:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2.5em;
}

/* Section Specific Colors */
.section-why { border-left-color: #3498db; }
.section-genres { border-left-color: #27ae60; }
.section-start { border-left-color: #f39c12; }
.section-features { border-left-color: #9b59b6; }
.section-movies { border-left-color: #e74c3c; }
.section-alternatives { border-left-color: #e67e22; }
.section-faq { border-left-color: #1abc9c; }
.section-conclusion { 
    border-top: 3px solid #34495e; 
    margin-top: 3em; 
    padding-top: 2em;
    border-left: none;
}

/* Enhanced Typography */
h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 600;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Improved Readability */
.content-section {
    margin-bottom: 3em;
}

/* Enhanced FAQ Styling */
.section-faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-faq li {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-faq li:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.section-faq li strong {
    display: block;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 18px 25px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.section-faq li strong:hover {
    background: linear-gradient(135deg, #16a085, #138d75);
}

.section-faq li strong:after {
    content: "▼";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.section-faq li.collapsed strong:after {
    transform: translateY(-50%) rotate(-90deg);
}

.section-faq li p {
    padding: 25px;
    margin: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 1em;
    border-top: 1px solid #e9ecef;
}

.section-faq li:before {
    display: none;
}

/* FAQ Animation */
.faq-answer {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer.collapsed {
    max-height: 0;
    transition: max-height 0.3s ease-in;
}

/* FAQ Counter */
.section-faq li {
    counter-increment: faq-counter;
}

.section-faq ul {
    counter-reset: faq-counter;
}

.section-faq li strong:before {
    content: "Q" counter(faq-counter) ": ";
    font-weight: 700;
    margin-right: 8px;
    opacity: 0.9;
}

/* FAQ Search Box */
.faq-search {
    margin-bottom: 30px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1em;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.faq-search input:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.faq-search:after {
    content: "🔍";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

/* FAQ Statistics */
.faq-stats {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-stats h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.faq-stats p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .container {
        margin: 15px;
        padding: 25px;
        width: auto;
    }
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.6em;
        margin-top: 2em;
    }
    p {
        font-size: 1em;
        line-height: 1.7;
    }
    img.content-image {
         max-width: 95%;
    }
    
    /* Mobile FAQ Styles */
    .section-faq li strong {
        padding: 15px 20px;
        font-size: 1em;
    }
    
    .section-faq li strong:after {
        right: 20px;
    }
    
    .section-faq li p {
        padding: 20px;
        font-size: 0.95em;
    }
    
    .faq-search input {
        padding: 12px 45px 12px 15px;
        font-size: 0.95em;
    }
    
    .faq-search:after {
        right: 15px;
        font-size: 1.1em;
    }
    
    .faq-stats {
        padding: 15px;
    }
    
    .faq-stats h3 {
        font-size: 1.1em;
    }
    
    .faq-stats p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.3em;
    }
     .cta-button {
        display: block; /* Full width button on small screens */
        width: 90%;
        margin: 15px auto;
    }
}
