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

:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --secondary-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #10B981, #059669);
    --gradient-secondary: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-hero: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-dark: #1e293b;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

@media (min-width: 769px) {
    .nav-container .nav-menu {
        flex-grow: 1;
        justify-content: center;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.tv-mockup {
    position: relative;
    width: 400px;
    height: 250px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.streaming-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.content-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.content-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.savings {
    background: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.plan-features i.fa-check-circle {
    color: var(--primary-color);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

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

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item i {
    width: 18px;
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-img-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* This is the key change: it allows Logo.webp to go outside the container's borders */
    overflow: visible;
  }
  
  .hero-img {
    /* We remove the max-width and max-height to let the image grow */
    width: 170%; /* Increase the image size to 140% of the container */
    height: auto; /* Maintain the aspect ratio */
    /* This will move the image slightly up to create a better visual balance */
    transform: translateY(-50px);
    /* The padding is no longer needed on the container, so we add it here */
    padding: 30px;
    border-radius: 15px;
  }

.payment-methods {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hero-img-container {
        width: 300px;
        height: 300px;
        padding: 20px;
        margin: 20px auto;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 20px 0 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-img-container {
        width: 250px;
        height: 250px;
        padding: 15px;
        margin: 15px auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-img-container {
        width: 400px;
        height: 400px;
        padding: 25px;
        margin: 25px auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* App Download Section */
.app-download {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-download-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-download-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.phone-mockups {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: auto;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.download-btn img {
    width: 180px;
    height: 60px;
    object-fit: cover;
}

/* Responsive App Download Section */
@media (max-width: 768px) {
    .app-download {
        padding: 80px 0;
    }
    
    .app-download-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .app-download-text h2 {
        font-size: 2rem;
    }
    
    .app-download-text p {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 250px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .download-btn {
        width: 160px;
        height: 50px;
    }
    
    .download-btn img {
        width: 160px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .app-download-text h2 {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 200px;
    }
    
    .download-btn {
        width: 140px;
        height: 45px;
    }
    
    .download-btn img {
        width: 140px;
        height: 45px;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tv-mockup {
        width: 300px;
        height: 200px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Additional Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Pricing Page Specific Styles */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.main-pricing {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-grid-detailed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card-detailed.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.plan-features-detailed {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features-detailed li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features-detailed i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.plan-features-detailed i.fa-check-circle {
    color: var(--primary-color);
}

.pricing-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-detailed.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card-detailed.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.savings-badge {
    background: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.plan-features-detailed {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features-detailed li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.plan-features-detailed i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.btn-order {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Compare Plans Section */
.compare-plans {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    font-size: 1rem;
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .text-success {
    color: var(--success-color);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--bg-primary);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card-detailed.featured {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

/* Tablet screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card,
    .pricing-card-detailed {
        padding: 30px 20px;
    }
}

/* Image-Based Pricing Styles */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.popular-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 120px;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 15px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.discount-badge {
    background: #f3f4f6;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.discount-badge.featured-discount {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Card Styles */
.pricing-card.best-value {
    border-color: #8b5cf6;
    position: relative;
}

.pricing-card.ultimate {
    border-color: #ef4444;
    position: relative;
}

.pricing-card-detailed.best-value {
    border-color: #8b5cf6;
    position: relative;
}

.pricing-card-detailed.ultimate {
    border-color: #ef4444;
    position: relative;
}

/* Feature Icons */
.plan-features li i.fa-star {
    color: #f59e0b;
}

.plan-features li i.fa-crown {
    color: #8b5cf6;
}

.plan-features li i.fa-gem {
    color: #ef4444;
}

.plan-features-detailed li i.fa-star {
    color: #f59e0b;
}

.plan-features-detailed li i.fa-crown {
    color: #8b5cf6;
}

.plan-features-detailed li i.fa-gem {
    color: #ef4444;
}

/* Button Variations */
.btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.btn-outline.featured-btn {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn.featured-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.featured-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

/* Pricing Card Hover Effects */
.pricing-card:hover,
.pricing-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card-detailed.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Responsive Pricing Adjustments */
@media (max-width: 768px) {
    .original-price {
        font-size: 0.9rem;
    }
    
    .price .cents,
    .plan-price .cents {
        font-size: 1.2rem;
    }
    
    .trial-badge,
    .savings-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Channels Page Styles */
.channels-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.channels-hero-Logo.webp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.channels-hero-Logo.webp p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.channel-categories {
    padding: 100px 0;
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.sports-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.movie-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kids-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.music-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.documentary-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.channel-count-header {
    color: #e74c3c;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-align: center;
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.channel-list {
    list-style: none;
    padding: 0;
}

.channel-list li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.global-coverage {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.coverage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.coverage-flag {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.coverage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.coverage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-count {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.premium-quality {
    padding: 100px 0;
    background: var(--bg-primary);
}

.quality-Logo.webp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.quality-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.quality-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quality-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

.quality-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quality-mockup {
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.screen-quality {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quality-indicator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.streaming-bars {
    display: flex;
    gap: 5px;
    align-items: end;
}

.bar {
    width: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: streaming 1.5s ease-in-out infinite;
}

.bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    height: 25px;
    animation-delay: 0.6s;
}

.bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.9s;
}

@keyframes streaming {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.channels-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.channels-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.channels-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.channels-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.channels-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.channels-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.channels-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Channels Page */
@media (max-width: 768px) {
    .channels-hero-Logo.webp h1 {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-Logo.webp {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .quality-mockup {
        width: 250px;
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* Setup Page Styles */
.setup-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.setup-hero-Logo.webp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.setup-hero-Logo.webp p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.quick-start {
    padding: 100px 0;
    background: var(--bg-primary);
}

.quick-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.device-setup {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Device Tabs */
.device-tabs {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap !important;
    margin: 40px 0;
}

.device-tab {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.device-tab:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.device-tab.active {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    border-color: #8b4513;
}

.device-tab i {
    font-size: 1.1rem;
}

/* Device Logo.webp */
.device-Logo.webp {
    margin-top: 40px;
}

.device-panel {
    display: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.device-panel.active {
    display: block;
}

.panel-header {
    background: linear-gradient(135deg, #8b4513 0%, #4a90e2 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.panel-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.panel-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.difficulty-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.difficulty-badge.easy {
    background: #22c55e;
    color: white;
}

.difficulty-badge.medium {
    background: #f59e0b;
    color: white;
}

.difficulty-badge.hard {
    background: #ef4444;
    color: white;
}

.setup-steps {
    padding: 30px;
}

.setup-step {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.setup-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.setup-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.setup-step h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.setup-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.setup-step ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.setup-step ul li {
    margin-bottom: 5px;
}

.code-block {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
}

.code-block code {
    color: #e74c3c;
    font-size: 0.9rem;
    word-break: break-all;
}

.troubleshooting {
    padding: 100px 0;
    background: var(--bg-primary);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.issue-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.issue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.issue-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.issue-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.issue-card ul li {
    padding: 5px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.issue-card ul li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.help-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.help-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Setup Page */
@media (max-width: 768px) {
    .setup-hero-Logo.webp h1 {
        font-size: 2.2rem;
    }
    
    .quick-steps {
        grid-template-columns: 1fr;
    }
    
    .device-tabs {
        gap: 8px;
    }
    
    .device-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .panel-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .panel-header h3 {
        font-size: 1.2rem;
    }
    
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tablet landscape - show 4 in a row */
@media (max-width: 1024px) and (min-width: 769px) {
    .issues-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .issue-card {
        padding: 25px 20px;
    }
    
    .issue-card h3 {
        font-size: 1.1rem;
    }
}

/* Resellers Page Styles */
.resellers-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.resellers-hero-Logo.webp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.resellers-hero-Logo.webp p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.why-choose {
    padding: 100px 0;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.commission-structure {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-credits {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 -20px 25px -20px;
    display: block;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.package-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.success-stories {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-Logo.webp {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ready-to-start {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.ready-to-start .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ready-to-start .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ready-to-start .btn-primary {
    background: white;
    color: var(--primary-color);
}

.ready-to-start .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.ready-to-start .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ready-to-start .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* Responsive Design for Resellers Page */
@media (max-width: 768px) {
    .resellers-hero-Logo.webp h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.about-hero-Logo.webp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-hero-Logo.webp p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.our-story {
    padding: 100px 0;
    background: var(--bg-primary);
}

.story-Logo.webp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.visual-element {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.visual-element i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.visual-element span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mission-vision {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.core-values {
    padding: 100px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.by-numbers {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.number-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.number-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.technology {
    padding: 100px 0;
    background: var(--bg-primary);
}

.tech-Logo.webp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tech-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.tech-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.tech-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.tech-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 15px;
}

.server {
    width: 200px;
    height: 20px;
    background: #4a5568;
    border-radius: 5px;
    position: relative;
}

.server.active {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.our-team {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.awards {
    padding: 100px 0;
    background: var(--bg-primary);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.award-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.award-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.join-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.join-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.join-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.join-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.join-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.join-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.join-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-Logo.webp h1 {
        font-size: 2.2rem;
    }
    
    .story-Logo.webp {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .tech-Logo.webp {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.contact-hero-Logo.webp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-hero-Logo.webp p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.contact-methods {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.form-Logo.webp {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.help-categories {
    padding: 100px 0;
    background: var(--bg-primary);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.help-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.help-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

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

.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Remove old FAQ grid styles */
.faq-grid {
    display: none;
}

.emergency-contact {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.emergency-Logo.webp h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-Logo.webp p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.emergency-contact .btn-primary {
    background: white;
    color: var(--primary-color);
}

.emergency-contact .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.emergency-contact .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-contact .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.response-time {
    opacity: 0.8;
}

.response-time p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-Logo.webp h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-container {
        margin: 0 20px;
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.page-header nav[aria-label="breadcrumb"] {
    margin-top: 20px;
}

.page-header nav[aria-label="breadcrumb"] ol {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.page-header nav[aria-label="breadcrumb"] li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.page-header nav[aria-label="breadcrumb"] li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.page-header nav[aria-label="breadcrumb"] a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-header nav[aria-label="breadcrumb"] a:hover {
    opacity: 0.8;
}

.policy-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.policy-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header nav[aria-label="breadcrumb"] li {
        font-size: 0.9rem;
    }
    
    .policy-section {
        padding: 25px 15px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}
