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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo i {
    color: #fbbf24;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #2563eb;
    padding-left: 2rem;
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 16px;
    color: #94a3b8;
}

.dropdown-item:hover i {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.8;
}

.hero-graphic i {
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 1s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #f8fafc;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-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 1rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.category-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #1d4ed8;
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 80px 0;
}

.featured-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.review-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    color: #94a3b8;
}

.review-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.rating-score {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2563eb;
    display: block;
}

.stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.review-content {
    padding: 1.5rem;
}

.review-category {
    background: #dbeafe;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.review-content h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
    color: #1e293b;
}

.review-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.review-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

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

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

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    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: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Review Article Responsive */
    .review-article {
        padding: 80px 0 60px;
    }
    
    .review-header,
    .quick-verdict,
    .price-comparison,
    .table-of-contents,
    .review-content,
    .author-bio,
    .related-reviews,
    .comments-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .review-header h1 {
        font-size: 2rem;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .verdict-pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .review-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .review-content h3 {
        font-size: 1.2rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .placeholder-image.large {
        height: 250px;
        font-size: 4rem;
    }
    
    /* About Page Responsive */
    .story-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Blog Page Responsive */
    .blog-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 120px;
    }
    
    /* Privacy Page Responsive */
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-toc {
        position: static;
        order: 2;
    }
    
    .privacy-sections {
         order: 1;
     }
 }
 
 @media (max-width: 480px) {
     .container {
         padding: 0 1rem;
     }
     
     .review-header h1 {
         font-size: 1.8rem;
     }
     
     .quick-verdict h2,
     .price-comparison h2,
     .review-content h2,
     .related-reviews h2,
     .comments-section h2 {
         font-size: 1.5rem;
     }
     
     .review-category {
         font-size: 0.7rem;
         padding: 0.4rem 0.8rem;
     }
     
     .placeholder-image.large {
         height: 200px;
         font-size: 3rem;
     }
     
     .price-card {
         padding: 1rem;
     }
     
     .author-info .author-avatar {
         width: 60px;
         height: 60px;
     }
     
     .category-filters {
         gap: 0.5rem;
     }
     
     .filter-btn {
         padding: 0.5rem 0.75rem;
         font-size: 0.8rem;
     }
     
     /* Team Section Mobile */
     .team-stats {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .stat-item {
         padding: 20px 15px;
     }
     
     .stat-number {
         font-size: 2rem;
     }
     
     .team-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     
     .member-card {
         padding: 30px 20px 20px;
     }
     
     .member-avatar {
         width: 80px;
         height: 80px;
         font-size: 30px;
     }
     
     .member-specialties {
         flex-direction: column;
         align-items: center;
     }
     
     /* Terms Page Mobile */
     .terms-header .header-content h1 {
         font-size: 2rem;
     }
     
     .terms-header .header-subtitle {
         font-size: 1rem;
     }
     
     .terms-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }
     
     .terms-toc {
         position: static;
         order: 2;
     }
     
     .terms-sections {
         padding: 25px 20px;
         order: 1;
     }
     
     .terms-section h2 {
         font-size: 1.5rem;
     }
     
     .highlight-box,
     .warning-box {
         padding: 20px 15px;
         margin: 20px 0;
     }
     
     .contact-item {
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }
 }

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .categories h2,
    .featured-reviews h2 {
        font-size: 2rem;
    }
    
    .newsletter h2 {
        font-size: 2rem;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.team .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-intro {
    margin-bottom: 60px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-card {
    padding: 40px 30px 30px;
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    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: 40px;
    position: relative;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.specialty {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-bio {
    text-align: left;
    margin-bottom: 25px;
}

.member-bio p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
}

.credential i {
    color: #3498db;
    width: 16px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Terms and Conditions Page */
.terms-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.terms-header .header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-header .header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.terms-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-toc {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.terms-toc h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.terms-toc ul {
    list-style: none;
    padding: 0;
}

.terms-toc li {
    margin-bottom: 12px;
}

.terms-toc a {
    color: #666;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.terms-toc a:hover {
    background: #3498db;
    color: white;
    transform: translateX(5px);
}

.terms-sections {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.terms-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.terms-section h3 {
    color: #34495e;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.terms-section h4 {
    color: #2c3e50;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.terms-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul {
    color: #666;
    line-height: 1.7;
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
}

.highlight-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-box ul {
    margin-bottom: 0;
}

.warning-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffebee 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #ff9800;
}

.warning-box h4 {
    color: #e65100;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warning-box p {
    color: #555;
    margin-bottom: 0;
}

.link-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    color: #3498db;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #555;
    font-weight: 500;
}

/* AdSense Friendly Styles */
.ad-container {
    margin: 2rem 0;
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-filters {
    background: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.filter-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

.blog-content {
    padding: 3rem 0;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.our-story {
    padding: 80px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-graphic i {
    font-size: 4rem;
    color: #2563eb;
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.about-graphic i:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.our-mission {
    padding: 80px 0;
    background: #f8fafc;
}

.our-mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-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 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: #2563eb;
    font-size: 1.2rem;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.social-media {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.social-media h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Privacy Page Styles */
.privacy-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.privacy-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.privacy-toc {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
}

.privacy-toc h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.privacy-toc ul {
    list-style: none;
}

.privacy-toc ul li {
    margin-bottom: 0.75rem;
}

.privacy-toc ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.privacy-toc ul li a:hover {
    color: #2563eb;
    background: #f1f5f9;
    padding-left: 1rem;
}

.privacy-sections {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.privacy-section {
    padding: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #374151;
    font-weight: 600;
}

.privacy-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.privacy-section ul li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Review Article Styles */
.review-article {
    padding: 100px 0 80px;
    background: #f8fafc;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #1d4ed8;
}

.review-header {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.review-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.review-header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.review-featured-image {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    text-align: center;
}

.placeholder-image.large {
    height: 400px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #94a3b8;
}

.quick-verdict {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.quick-verdict h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-verdict h2::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.quick-verdict p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.verdict-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.verdict-pros,
.verdict-cons {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.verdict-pros {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.verdict-cons {
    background: #fef2f2;
    border-color: #fecaca;
}

.verdict-pros h3,
.verdict-cons h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verdict-pros h3 {
    color: #166534;
}

.verdict-cons h3 {
    color: #dc2626;
}

.verdict-pros h3 i {
    color: #22c55e;
}

.verdict-cons h3 i {
    color: #ef4444;
}

.verdict-pros ul,
.verdict-cons ul {
    list-style: none;
    margin: 0;
}

.verdict-pros ul li,
.verdict-cons ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.verdict-pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.verdict-cons ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.price-comparison {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.price-comparison h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

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

.price-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.price-card:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.price-card.best-deal {
    border-color: #22c55e;
    background: #f0fdf4;
    position: relative;
}

.price-card.best-deal::before {
    content: 'Best Deal';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.price-card .affiliate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.price-card .affiliate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.table-of-contents {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.toc-list {
    list-style: none;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.toc-list a:hover {
    background: #f1f5f9;
    padding-left: 1rem;
}

.review-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.review-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1e293b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-content h2:first-child {
    margin-top: 0;
}

.review-content h2::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.review-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #374151;
    font-weight: 600;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.review-content ul,
.review-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.review-content ul li,
.review-content ol li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Author Bio Section */
.author-bio {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.author-bio h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.author-info .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.author-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.author-details .author-title {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.author-social a {
    color: #64748b;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: #2563eb;
}

.author-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

/* Related Reviews Section */
.related-reviews {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.related-reviews h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

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

.related-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.related-card .placeholder-image {
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #94a3b8;
}

.related-card-content {
    padding: 1.5rem;
}

.related-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.related-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-card .read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-card .read-more:hover {
    color: #1d4ed8;
}

/* Comments Section */
.comments-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.comments-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.comment-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.comment-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
}

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

.comment-form .form-group {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.comment-form .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: #f8fafc;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.comment-meta h4 {
    font-size: 1rem;
    margin: 0;
    color: #1e293b;
    font-weight: 600;
}

.comment-meta .comment-date {
    font-size: 0.8rem;
    color: #64748b;
}

.comment-content {
    color: #64748b;
    line-height: 1.6;
}

/* Our Review Process Section */
.review-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.review-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.review-process .container {
    position: relative;
    z-index: 1;
}

.review-process .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.review-process .section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.review-process h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-process .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.process-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px 25px 0 0;
}

.intro-card p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.process-step {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.process-step:nth-child(even) .step-icon {
    margin-left: auto;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: 4px solid white;
}

.step-content {
    flex: 1;
    max-width: 48%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px 20px 0 0;
}

.step-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    background: rgba(52, 152, 219, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.step-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: 700;
    width: 18px;
    height: 18px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* AdSense Optimization */
.adsense-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
    text-align: center;
}

.adsense-container.sidebar {
    position: sticky;
    top: 120px;
    margin: 0;
}

.adsense-placeholder {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 3rem 2rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.ad-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Affiliate Link Styles */
.affiliate-disclaimer {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #92400e;
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.buy-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
    text-align: center;
    min-width: 120px;
}

.buy-btn.amazon {
    background: #ff9900;
    color: white;
    border-color: #ff9900;
}

.buy-btn.amazon:hover {
    background: #e68900;
}

.buy-btn.flipkart {
    background: #2874f0;
    color: white;
    border-color: #2874f0;
}

.buy-btn.flipkart:hover {
    background: #1e5bb8;
}

.buy-btn.ebay {
    background: #e53238;
    color: white;
    border-color: #e53238;
}

.buy-btn.ebay:hover {
    background: #c42126;
}

/* Our Commitment to Transparency Section */
.transparency {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.transparency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.2"/></svg>') repeat;
    z-index: 0;
}

.transparency .container {
    position: relative;
    z-index: 1;
}

.transparency .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.transparency .section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.transparency h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.transparency .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.transparency-content {
    max-width: 1200px;
    margin: 0 auto;
}

.transparency-intro {
    text-align: center;
    margin-bottom: 80px;
}

.transparency-intro .intro-card {
    background: rgba(255,255,255,0.95);
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    flex-shrink: 0;
}

.intro-text h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.intro-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.transparency-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.transparency-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(52, 152, 219, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.transparency-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.transparency-card:hover::after {
    opacity: 1;
    top: -10%;
    right: -10%;
}

.card-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.transparency-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    flex-shrink: 0;
}

.card-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 0 30px 30px;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.transparency-details {
    background: rgba(52, 152, 219, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.transparency-details h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.transparency-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.transparency-details li::before {
        content: '●';
        color: #3498db;
        font-weight: 700;
        width: 18px;
        height: 18px;
        background: rgba(52, 152, 219, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    /* Responsive Styles for Transparency Section */
    @media (max-width: 768px) {
        .transparency {
            padding: 60px 0;
        }
        
        .transparency h2 {
            font-size: 2rem;
        }
        
        .transparency .section-subtitle {
            font-size: 1.1rem;
        }
        
        .transparency-intro .intro-card {
            flex-direction: column;
            text-align: center;
            padding: 40px 30px;
            gap: 20px;
        }
        
        .intro-icon {
            width: 70px;
            height: 70px;
            font-size: 2rem;
        }
        
        .intro-text h3 {
            font-size: 1.5rem;
        }
        
        .transparency-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .transparency-card {
            margin: 0 10px;
        }
        
        .card-header {
            padding: 25px 25px 15px;
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .transparency-card .card-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
        
        .card-content {
            padding: 0 25px 25px;
        }
    }
    
    @media (max-width: 480px) {
        .transparency {
            padding: 40px 0;
        }
        
        .transparency h2 {
            font-size: 1.8rem;
        }
        
        .transparency .section-subtitle {
            font-size: 1rem;
        }
        
        .transparency-intro {
            margin-bottom: 50px;
        }
        
        .transparency-intro .intro-card {
            padding: 30px 20px;
            border-radius: 20px;
        }
        
        .intro-icon {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
        }
        
        .intro-text h3 {
            font-size: 1.3rem;
        }
        
        .intro-text p {
            font-size: 1rem;
        }
        
        .transparency-grid {
            gap: 20px;
        }
        
        .transparency-card {
            margin: 0 5px;
            border-radius: 15px;
        }
        
        .card-header {
            padding: 20px 20px 10px;
        }
        
        .card-header h3 {
            font-size: 1.2rem;
        }
        
        .transparency-card .card-icon {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        
        .card-content {
            padding: 0 20px 20px;
        }
        
        .transparency-details {
            padding: 15px;
        }
        
        .transparency-details h4 {
            font-size: 1rem;
        }
        
        .transparency-details li {
             font-size: 0.9rem;
         }
     }

/* Enhanced FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="75" cy="25" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="25" cy="75" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.3"/></svg>') repeat;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.faq-item::after {
    content: '?';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0.8;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.faq-item:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 60px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23ffffff" opacity="0.03"/><polygon points="20,20 40,60 0,60" fill="%23ffffff" opacity="0.02"/><polygon points="80,30 100,70 60,70" fill="%23ffffff" opacity="0.02"/></svg>') repeat;
    z-index: 0;
}

.partnership-section .container {
    position: relative;
    z-index: 1;
}

.partnership-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.partnership-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-card {
    background: rgba(255,255,255,0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.partnership-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.partnership-card:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.partnership-card:hover .partnership-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.partnership-card h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.partnership-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Styles for FAQ and Partnership Sections */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-item {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .faq-item::after {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        padding-right: 50px;
    }
    
    .partnership-section {
        padding: 60px 0;
    }
    
    .partnership-content h2 {
        font-size: 2rem;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnership-card {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .partnership-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .faq-grid {
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .faq-item::after {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 12px;
        right: 12px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding-right: 45px;
        margin-bottom: 15px;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .partnership-section {
        padding: 40px 0;
    }
    
    .partnership-content h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .partnership-grid {
        gap: 25px;
    }
    
    .partnership-card {
        padding: 30px 20px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .partnership-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .partnership-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .partnership-card p {
        font-size: 0.95rem;
    }
}