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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #3498db;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

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

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

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Main Content Sections */
section {
    padding: 60px 0;
    background-color: white;
    margin-bottom: 2px;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

strong {
    color: #3498db;
    font-weight: 600;
}

/* Feature Section */
.feature-section p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Reasons Section */
.reason-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.reasons-section {
    background-color: #f9f9f9;
}

.reason-item ul {
    margin: 20px 0;
    padding-left: 40px;
}

.reason-item li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

/* Feature Images */
.feature-image {
    text-align: center;
    margin: 40px 0;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Popular Genres */
.genre-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #3498db;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.genre-item h3 {
    margin-top: 0;
}

/* Why Best Section */
.why-best {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-best h2 {
    color: white;
}

.why-best p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* Conclusion Section */
.conclusion {
    background-color: #ecf0f1;
    text-align: center;
}

.conclusion p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 25px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.faq-item p {
    text-align: left;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-column h3 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-column p {
    color: #bdc3c7;
    text-align: left;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
}

.social-link:hover {
    color: #3498db;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #bdc3c7;
}

.footer-bottom p {
    margin: 5px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .reason-item,
    .genre-item,
    .faq-item {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    section {
        padding: 40px 0;
    }
}
