/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1dbf73;
    --primary-dark: #19a463;
    --secondary-color: #0e0e0f;
    --accent-color: #ff5722;
    --text-color: #333333;
    --light-text: #74767e;
    --background: #ffffff;
    --light-bg: #f7f7f7;
    --border: #e4e5e7;
    --shadow: 0 2px 20px rgba(0,0,0,0.1);
    --menu-width: 320px;
    --header-height: 70px;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MAIN HEADER STYLES ===== */
.main-header {
    background-color: var(--background);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 25px;
    position: relative;
}

/* ===== LOGO STYLES ===== */
.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-nav .nav-link:hover {
    color: var(--primary-color);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.desktop-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== DESKTOP CTA BUTTON ===== */
.header-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-cta .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.header-cta .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 191, 115, 0.3);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
}

/* Mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--primary-color);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: var(--menu-width);
    height: 100vh;
    background-color: var(--background);
    box-shadow: 2px 0 25px rgba(0,0,0,0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    left: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    background-color: var(--light-bg);
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-logo h2 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.mobile-nav-link:hover {
    background-color: var(--primary-color);
    color: white;
    padding-left: 30px;
}

.mobile-nav-divider {
    height: 1px;
    background-color: var(--border);
    margin: 10px 0;
}

/* Mobile CTA Button */
.btn-mobile-cta {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600 !important;
    justify-content: center;
    margin: 10px 15px;
    border-radius: 8px;
    border: none;
}

.btn-mobile-cta:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop First Approach */
@media (min-width: 769px) {
    .mobile-menu-btn,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
    
    .desktop-nav,
    .header-cta {
        display: flex !important;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .desktop-nav,
    .header-cta {
        display: none !important;
    }
    
    .main-header .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    /* Adjust header layout for mobile */
    .main-header .container {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .logo {
        flex: 1;
        text-align: center;
    }
}

/* ===== BODY PADDING FOR FIXED HEADER ===== */
body {
    padding-top: var(--header-height);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: 80px 0;
    background-color: var(--background);
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--background);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.category-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(29, 191, 115, 0.3);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-color);
}

.step p {
    color: var(--light-text);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--background);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-author p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 35px;
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    body {
        padding-top: 70px;
    }
}

/* Smooth animations */
.fade-in {
    animation: fadeIn 0.6s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== POST PAGE LAYOUT STYLES ===== */

.post-page {
    padding: 40px 0;
    min-height: calc(100vh - var(--header-height));
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.post-main-content {
    background: var(--background);
    border-radius: 12px;
    padding: 0;
}

.post-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

/* Blog Post Styles */
.blog-post {
    background: var(--background);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.post-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 30px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 700;
}

.post-meta {
    color: var(--light-text);
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta span::before {
    content: '•';
    margin-right: 5px;
}

.post-meta span:first-child::before {
    content: '';
    margin-right: 0;
}

.post-body {
    line-height: 1.8;
    font-size: 16px;
}

.post-body h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.post-body h3 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 600;
}

.post-body p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-tip {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.post-tags {
    margin-bottom: 25px;
}

.post-tags span {
    font-weight: 600;
    margin-right: 10px;
    color: var(--text-color);
}

.post-tags a {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-share span {
    font-weight: 600;
    color: var(--text-color);
}

.share-btn {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== SIDEBAR STYLES ===== */

.sidebar-widget {
    background: var(--background);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.banner-ad {
    text-align: center;
}

.banner-ad img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.banner-ad img:hover {
    transform: scale(1.02);
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    padding: 5px 0;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.freelancer-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.freelancer-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.freelancer-card:hover {
    transform: translateX(5px);
}

.freelancer-img {
    margin-right: 15px;
    flex-shrink: 0;
}

.freelancer-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-bg);
    transition: border-color 0.3s ease;
}

.freelancer-card:hover .freelancer-img img {
    border-color: var(--primary-color);
}

.freelancer-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.freelancer-info p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 5px;
}

.rating {
    color: #ffb33e;
    font-size: 14px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-weight: 500;
}

.recent-posts a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ===== RESPONSIVE DESIGN FOR POST LAYOUT ===== */

@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .blog-post {
        padding: 40px;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .post-page {
        padding: 20px 0;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-sidebar {
        position: static;
        order: -1;
    }
    
    .blog-post {
        padding: 30px 25px;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-body h2 {
        font-size: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .sidebar-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 25px 20px;
    }
    
    .post-header h1 {
        font-size: 1.6rem;
    }
    
    .post-body {
        font-size: 15px;
    }
    
    .post-body h2 {
        font-size: 1.3rem;
    }
    
    .post-tags a {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .share-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Additional utility classes for post content */
.post-content img {
    max-width: 100%;
    height: auto;
}

.post-content ul, .post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    background: var(--light-bg);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.post-content code {
    background: var(--light-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.post-content pre {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}
/* ===== GIG TEMPLATE STYLES ===== */

.gig-page {
    padding: 40px 0;
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
}

.gig-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.gig-main-content {
    background: var(--background);
    border-radius: 12px;
    padding: 0;
}

.gig-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Gig Header */
.gig-header {
    padding: 40px 40px 0;
}

.gig-header h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 700;
}

.gig-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.seller-details h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--text-color);
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffb33e;
}

.rating-text {
    color: var(--light-text);
    font-size: 14px;
}

.gig-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.stat span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* Gig Gallery */
.gig-gallery {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border);
}

.main-image {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail-gallery img {
    width: 150px;
    height: 100px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-gallery img:hover {
    transform: scale(1.05);
}

/* Gig Packages */
.gig-packages {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.gig-packages h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.package-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
}

.package-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Gig Description */
.gig-description {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.gig-description h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.description-content h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.description-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tech-tag {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* FAQ Section */
.gig-faq {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.gig-faq h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Reviews Section */
.gig-reviews {
    padding: 40px;
}

.gig-reviews h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.reviews-summary {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
}

.overall-rating {
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffb33e;
    margin: 10px 0;
}

.rating-count {
    color: var(--light-text);
    font-size: 14px;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-bar span:first-child {
    width: 60px;
    font-size: 14px;
    color: var(--light-text);
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: right;
    font-size: 14px;
    color: var(--light-text);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--text-color);
}

.review-rating {
    color: #ffb33e;
    font-size: 14px;
}

.review-card p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: var(--text-color);
}

.review-date {
    font-size: 12px;
    color: var(--light-text);
}

/* ===== RESPONSIVE DESIGN FOR GIG TEMPLATE ===== */

@media (max-width: 1024px) {
    .gig-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .gig-page {
        padding: 20px 0;
    }
    
    .gig-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gig-sidebar {
        position: static;
        order: -1;
    }
    
    .gig-header,
    .gig-gallery,
    .gig-packages,
    .gig-description,
    .gig-faq,
    .gig-reviews {
        padding: 25px;
    }
    
    .gig-header h1 {
        font-size: 1.8rem;
    }
    
    .gig-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .gig-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .rating-bars {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gig-header,
    .gig-gallery,
    .gig-packages,
    .gig-description,
    .gig-faq,
    .gig-reviews {
        padding: 20px;
    }
    
    .gig-header h1 {
        font-size: 1.5rem;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .thumbnail-gallery {
        justify-content: flex-start;
    }
    
    .thumbnail-gallery img {
        width: 120px;
        height: 80px;
    }
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: 40px 0;
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.legal-content {
    background: var(--background);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.info-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-page {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.mission-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.mission-section h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.expertise-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--background);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.method-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.method-details h3 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.method-details small {
    color: var(--light-text);
}

.contact-form-container {
    background: var(--background);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 25px 20px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Main container for sidebar layout */
.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Main content area */
.category-page {
    flex: 1;
    min-width: 300px;
}

/* Sidebar styling */
#site-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    #site-sidebar {
        width: 100%;
        order: 2;
    }
    
    .category-page {
        order: 1;
    }
}

/* Services grid styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Float-based layout */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden; /* Clear float */
}

.category-page {
    width: 70%;
    float: left;
}

#site-sidebar {
    width: 28%;
    float: right;
}

/* Clear float on mobile */
@media (max-width: 768px) {
    .category-page,
    #site-sidebar {
        width: 100%;
        float: none;
    }
}

        /* Additional CSS for Review Page */
        .summary-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        
        .pros ul, .cons ul {
            list-style: none;
            padding: 0;
        }
        
        .pros li:before {
            content: "✓ ";
            color: #4CAF50;
            font-weight: bold;
        }
        
        .cons li:before {
            content: "✗ ";
            color: #f44336;
            font-weight: bold;
        }
        
        .review-section {
            margin: 40px 0;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }
        
        .speed-test-results table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .speed-test-results th, .speed-test-results td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .speed-test-results th {
            background-color: #667eea;
            color: white;
        }
        
        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        .pricing-table th {
            background-color: #2c3e50;
            color: white;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .faq-section .faq-item {
            margin: 20px 0;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .final-verdict {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-top: 20px;
        }
        
        .rating-breakdown {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .cta-box {
            text-align: center;
            margin: 30px 0;
            padding: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2em;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        .cta-button-secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button-secondary:hover {
            background: white;
            color: #667eea;
        }
        
        .review-meta {
            color: #666;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .pros-cons, .final-verdict {
                grid-template-columns: 1fr;
            }
            
            .pricing-table table, .speed-test-results table {
                font-size: 0.9em;
            }
        }
        
        /* VPN Comparison Page Styles */
.comparison-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}

.vs-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
    font-size: 1.2em;
}

.provider-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.provider-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.provider-card.winner {
    border-color: #4CAF50;
    position: relative;
}

.winner-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9em;
}

.provider-logo {
    height: 80px;
    margin-bottom: 20px;
}

.rating {
    font-size: 2em;
    font-weight: bold;
    color: #ff6b35;
    margin: 10px 0;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stat-value {
    font-size: 1.4em;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 1.1em;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.winner-cell {
    background: #e8f5e8 !important;
    font-weight: bold;
    color: #2e7d32;
}

.feature-score {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
}

.score-high {
    background: #4CAF50;
    color: white;
}

.score-medium {
    background: #ff9800;
    color: white;
}

.score-low {
    background: #f44336;
    color: white;
}

.verdict-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    text-align: center;
}

.verdict-rating {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 25px;
    margin: 20px 0;
    font-size: 1.1em;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.recommendation-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rec-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

/* CTA Buttons - Orange with White Text */
.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid #ff6b35;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.cta-button-secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Summary Box Styles */
.summary-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li:before {
    content: "✓ ";
    color: #4CAF50;
    font-weight: bold;
}

.cons li:before {
    content: "✗ ";
    color: #f44336;
    font-weight: bold;
}

/* Review Section Styles */
.review-section {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.speed-test-results table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.speed-test-results th, .speed-test-results td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.speed-test-results th {
    background-color: #667eea;
    color: white;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.pricing-table th {
    background-color: #2c3e50;
    color: white;
}

.pricing-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.faq-section .faq-item {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.final-verdict {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
}

.rating-breakdown {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-box {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.review-meta {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .provider-cards, .recommendation-cards {
        grid-template-columns: 1fr;
    }
    
    .quick-stats, .pros-cons, .final-verdict {
        grid-template-columns: 1fr;
    }
    
    .comparison-table, .speed-test-results table, .pricing-table table {
        font-size: 0.9em;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px 5px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .comparison-hero {
        padding: 30px 15px;
    }
    
    .provider-card, .recommendation-card {
        padding: 20px 15px;
    }
    
    .review-section {
        padding: 20px 15px;
    }
    
    .summary-box {
        padding: 20px 15px;
    }
}


/* Best Budget VPN Page Specific Styles */
.budget-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.budget-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin: 15px 0;
    font-size: 1.1em;
}

.budget-vpn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.budget-vpn-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.budget-vpn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.budget-winner-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8em;
    z-index: 2;
}

.budget-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.budget-provider-logo {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    object-position: center;
}

.budget-card-tag {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: bold;
}

.budget-card-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.budget-card-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
}

.budget-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.budget-stat-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.budget-stat-value {
    font-size: 1.1em;
    font-weight: bold;
    color: #667eea;
}

.budget-stat-label {
    font-size: 0.8em;
    color: #666;
    margin-top: 3px;
}

.budget-feature-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.budget-feature-table th {
    background: #2c3e50;
    color: white;
    padding: 18px;
    text-align: left;
    font-size: 1em;
    font-weight: 600;
}

.budget-feature-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.budget-feature-table tr:nth-child(even) {
    background: #f8f9fa;
}

.budget-winner-cell {
    background: #e8f5e8 !important;
    font-weight: bold;
    color: #2e7d32;
}

.budget-performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.budget-performance-table th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 0.95em;
}

.budget-performance-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
}

.budget-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.budget-recommendation-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.budget-recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.budget-rec-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #667eea;
}

.budget-rec-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.budget-rec-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
}

.budget-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.budget-pricing-table th {
    background: #2c3e50;
    color: white;
    padding: 16px;
    text-align: left;
    font-size: 0.95em;
}

.budget-pricing-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
}

.budget-verdict-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.budget-verdict-rating {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin: 15px 0;
    font-size: 1em;
    font-weight: 600;
}

.budget-faq-section {
    margin: 40px 0;
}

.budget-faq-item {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.budget-faq-question {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.budget-faq-answer {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* CTA Buttons - Orange with White Text */
.budget-cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    margin: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid #ff6b35;
    text-align: center;
    width: 100%;
}

.budget-cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.budget-cta-secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.budget-cta-secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Summary Box */
.budget-summary-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.budget-summary-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.budget-summary-box p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Review Section */
.budget-review-section {
    margin: 35px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.budget-review-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .budget-vpn-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .budget-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-card-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .budget-feature-table,
    .budget-performance-table,
    .budget-pricing-table {
        font-size: 0.85em;
    }
    
    .budget-feature-table th,
    .budget-feature-table td,
    .budget-performance-table th,
    .budget-performance-table td,
    .budget-pricing-table th,
    .budget-pricing-table td {
        padding: 10px 8px;
    }
    
    .budget-recommendation-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-hero {
        padding: 40px 20px;
    }
    
    .budget-cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
        margin: 5px;
        display: block;
    }
}

@media (max-width: 480px) {
    .budget-vpn-card {
        padding: 20px 15px;
    }
    
    .budget-review-section {
        padding: 20px 15px;
    }
    
    .budget-verdict-section {
        padding: 25px 20px;
    }
    
    .budget-provider-logo {
        height: 30px;
        max-width: 100px;
    }
    
    .budget-badge {
        font-size: 1em;
        padding: 6px 15px;
    }
}

/* Image Optimization */
.budget-provider-logo {
    height: 35px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Ensure no image overflow */
.budget-vpn-card img,
.budget-recommendation-card img,
.budget-hero img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Loading states for images */
.budget-image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Floating Offer Bar Styling */
