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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px; /* Space for fixed header */
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 80px;
}

/* Header Logo */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #1d4ed8;
    transform: translateY(-1px);
}

.logo-link i {
    font-size: 1.75rem;
    color: #f59e0b;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.logo-text {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Header Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.whatsapp-header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-header-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-header-btn i {
    font-size: 1.125rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-title-main {
    display: block;
    color: #2563eb;
}

.hero-title-sub {
    display: block;
    color: #1a1a1a;
    font-size: 0.8em;
    font-weight: 500;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.feature i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.intro-text {
    text-align: left;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 48px;
    text-align: center;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.intro-stats .stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.intro-stats .stat-number i {
    color: #2563eb;
    font-size: 1.5rem;
}

.intro-stats .stat-number span {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.4;
}

.intro-benefits {
    margin-bottom: 40px;
}

.intro-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.benefits-list i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list span {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
}

.intro-conclusion {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
    font-style: italic;
    padding: 32px;
    background-color: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

/* Responsive for Intro Section */
@media (max-width: 768px) {
    .intro {
        padding: 60px 0;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-lead {
        font-size: 1.125rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 20px;
    }
    
    .intro-stats .stat-number span {
        font-size: 1.75rem;
    }
    
    .benefits-list {
        gap: 12px;
    }
    
    .benefits-list li {
        padding: 12px;
    }
    
    .intro-conclusion {
        font-size: 1rem;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 1.75rem;
    }
    
    .intro-lead {
        font-size: 1rem;
    }
    
    .intro-stats .stat-number {
        flex-direction: column;
        gap: 8px;
    }
    
    .intro-stats .stat-number i {
        font-size: 1.25rem;
    }
    
    .intro-stats .stat-number span {
        font-size: 1.5rem;
    }
}

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

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

.methods-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.methods-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.method-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.method-card.recommended {
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.method-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.method-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.method-badge {
    background: #22c55e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.premium-badge {
    background: #f59e0b;
}

.method-card.premium {
    border-color: #f59e0b;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.1);
}

.method-cta {
    margin-top: 16px;
    text-align: center;
}

.btn-premium {
    background-color: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-premium:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.method-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
    text-align: center;
}

.method-pros,
.method-cons {
    margin-bottom: 20px;
}

.method-pros h4,
.method-cons h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.method-pros h4 {
    color: #22c55e;
}

.method-cons h4 {
    color: #ef4444;
}

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

.method-pros li,
.method-cons li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.method-pros i {
    color: #22c55e;
    font-size: 0.8rem;
}

.method-cons i {
    color: #ef4444;
    font-size: 0.8rem;
}

.method-ideal {
    background: #eff6ff;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    border-left: 4px solid #2563eb;
}

.method-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.method-time i {
    color: #2563eb;
}

.methods-recommendation {
    display: flex;
    justify-content: center;
}

.recommendation-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 600px;
}

.recommendation-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.recommendation-box i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.recommendation-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Responsive for Methods Section */
@media (max-width: 768px) {
    .methods {
        padding: 60px 0;
    }
    
    .methods-title {
        font-size: 2rem;
    }
    
    .methods-subtitle {
        font-size: 1.125rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .method-card {
        padding: 24px;
    }
    
    .recommendation-box {
        padding: 24px;
        margin: 0 16px;
    }
    
    .recommendation-box h3 {
        font-size: 1.125rem;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .methods {
        padding: 40px 0;
    }
    
    .methods-title {
        font-size: 1.75rem;
    }
    
    .methods-subtitle {
        font-size: 1rem;
    }
    
    .method-card {
        padding: 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon i {
        font-size: 1.25rem;
    }
    
    .method-title {
        font-size: 1.25rem;
    }
    
    .recommendation-box {
        padding: 20px;
        margin: 0 8px;
    }
}

/* Steps Section - Redesigned */
.steps {
    padding: 80px 0;
    background-color: #fff;
}

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

.steps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.steps-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-card:hover .step-image {
    transform: scale(1.05);
}

.steps .step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card-content {
    padding: 32px;
}

.step-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

.step-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.step-highlights i {
    color: #22c55e;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-highlights li:last-child {
    margin-bottom: 0;
}

.steps-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Responsive for Steps Section */
@media (max-width: 768px) {
    .steps {
        padding: 60px 0;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .steps-subtitle {
        font-size: 1.125rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-image-container {
        height: 180px;
    }
    
    .steps .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .step-card-content {
        padding: 24px;
    }
    
    .step-card-title {
        font-size: 1.375rem;
    }
    
    .cta-box {
        padding: 32px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .steps {
        padding: 40px 0;
    }
    
    .steps-title {
        font-size: 1.75rem;
    }
    
    .steps-subtitle {
        font-size: 1rem;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step-image-container {
        height: 160px;
    }
    
    .steps .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 12px;
        right: 12px;
    }
    
    .step-card-content {
        padding: 20px;
    }
    
    .step-card-title {
        font-size: 1.25rem;
    }
    
    .step-card-description {
        font-size: 0.95rem;
    }
    
    .step-highlights li {
        font-size: 0.9rem;
    }
    
    .cta-box {
        padding: 24px;
        margin: 0 8px;
    }
    
    .cta-box h3 {
        font-size: 1.25rem;
    }
}

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

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

.tips-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tips-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.tip-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tip-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.tip-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tip-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
}

.tip-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.tip-points i {
    color: #22c55e;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tip-points li:last-child {
    margin-bottom: 0;
}

.tips-highlight {
    display: flex;
    justify-content: center;
}

.highlight-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.highlight-icon i {
    font-size: 2rem;
    color: #fff;
}

.highlight-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.highlight-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Responsive for Tips Section */
@media (max-width: 768px) {
    .tips {
        padding: 60px 0;
    }
    
    .tips-title {
        font-size: 2rem;
    }
    
    .tips-subtitle {
        font-size: 1.125rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tip-card {
        padding: 24px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        margin: 0 16px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tips {
        padding: 40px 0;
    }
    
    .tips-title {
        font-size: 1.75rem;
    }
    
    .tips-subtitle {
        font-size: 1rem;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .tip-icon {
        width: 50px;
        height: 50px;
    }
    
    .tip-icon i {
        font-size: 1.25rem;
    }
    
    .tip-title {
        font-size: 1.25rem;
    }
    
    .tip-description {
        font-size: 0.95rem;
    }
    
    .highlight-box {
        padding: 24px;
        margin: 0 8px;
    }
    
    .highlight-content h3 {
        font-size: 1.25rem;
    }
    
    .highlight-content p {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .btn {
        transition: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .method-card {
        transition: none;
    }
    
    .method-card:hover {
        transform: none;
    }
    
    .tip-card {
        transition: none;
    }
    
    .tip-card:hover {
        transform: none;
    }
}

/* Portfolio Section - Clean & Simple */
.portfolio {
    padding: 80px 0;
    background-color: #fff;
}

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

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: transparent;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-hidden {
    display: none;
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.portfolio-item:hover .portfolio-overlay .portfolio-link {
    transform: translateY(0);
}

.portfolio-overlay .portfolio-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-tooltip {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    text-align: center;
    line-height: 1.3;
}

.portfolio-item:hover .portfolio-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-load-more {
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-load-more:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-load-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: rotate(90deg);
}

/* Responsive for Portfolio Section */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-title {
        font-size: 2rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.125rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 40px 0;
    }
    
    .portfolio-title {
        font-size: 1.75rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .btn-load-more {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

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

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

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 4px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    border-color: #2563eb;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #2563eb;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: #2563eb;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2563eb;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.nav-btn:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-btn:disabled:hover {
    background: #fff;
    color: #2563eb;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.dot:hover {
    background: #9ca3af;
}

/* Responsive for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.125rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
        margin: 0 16px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
        margin: 0 8px;
    }
    
    .testimonial-image {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }
    
    .testimonial-text::before {
        top: -15px;
        left: -8px;
    }
    
    .testimonial-text::after {
        bottom: -30px;
        right: -8px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.875rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    border-bottom-color: #e5e7eb;
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1rem;
    color: #2563eb;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1d4ed8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer > div {
    padding: 0 32px 32px 32px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer ol li,
.faq-answer ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 8px;
}

.faq-answer ol li:last-child,
.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 600;
}

.faq-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.faq-cta .cta-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
}

.faq-cta .cta-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-cta .cta-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Responsive for FAQ Section */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
        padding-right: 16px;
    }
    
    .faq-answer > div {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p,
    .faq-answer ol li,
    .faq-answer ul li {
        font-size: 0.95rem;
    }
    
    .faq-cta .cta-box {
        padding: 32px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-grid {
        gap: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 12px;
    }
    
    .faq-icon {
        font-size: 0.9rem;
        width: 18px;
        height: 18px;
    }
    
    .faq-answer > div {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p,
    .faq-answer ol li,
    .faq-answer ul li {
        font-size: 0.9rem;
    }
    
    .faq-answer ol,
    .faq-answer ul {
        padding-left: 20px;
    }
    
    .faq-cta .cta-box {
        padding: 24px;
        margin: 0 8px;
    }
    
    .faq-cta .cta-box h3 {
        font-size: 1.25rem;
    }
    
    .faq-cta .cta-box p {
        font-size: 0.95rem;
    }
}

/* Blog Section - Featured Background */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog::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="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.blog .container {
    position: relative;
    z-index: 2;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blog-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: transform 0.5s ease;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    transform: translateY(0);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    height: auto;
}

.blog-article-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    flex: 1;
    min-height: 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
    margin-top: auto;
}

.blog-reading-time,
.blog-difficulty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.blog-reading-time i,
.blog-difficulty i {
    color: #667eea;
    font-size: 0.85rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 12px;
}

.blog-read-more:hover {
    color: #764ba2;
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.blog-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
}

.blog-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.blog-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.blog-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.blog-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.blog-cta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.blog-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-cta-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-cta-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.blog-cta-box .btn {
    background: #fff;
    color: #667eea;
    border: none;
    font-weight: 600;
    padding: 18px 36px;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-cta-box .btn:hover {
    background: #f8f9ff;
    color: #764ba2;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive for Blog Section */
@media (max-width: 1200px) {
    .blog-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .blog-content {
        min-height: 300px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 80px 0;
    }
    
    .blog-title {
        font-size: 2.25rem;
    }
    
    .blog-subtitle {
        font-size: 1.125rem;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card {
        margin: 0 16px;
    }
    
    .blog-content {
        padding: 24px;
        min-height: 260px;
        height: auto;
    }
    
    .blog-article-title {
        font-size: 1.25rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-meta {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    .blog-cta-box {
        padding: 32px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 1.875rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-card {
        margin: 0 8px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
        min-height: 260px;
        height: auto;
    }
    
    .blog-article-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .blog-meta {
        margin-bottom: 20px;
    }
    
    .blog-reading-time,
    .blog-difficulty {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .blog-read-more {
        font-size: 0.9rem;
    }
    
    .blog-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .blog-dot {
        width: 12px;
        height: 12px;
    }
    
    .blog-cta-box {
        padding: 24px;
        margin: 0 8px;
    }
    
    .blog-cta-box h3 {
        font-size: 1.375rem;
    }
    
    .blog-cta-box p {
        font-size: 1rem;
    }
}

/* Article Page Styles */
.article-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-home:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.nav-breadcrumb {
    font-size: 0.9rem;
    color: #6b7280;
}

.nav-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 8px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.article-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 24px;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.article-author {
    font-weight: 600;
    color: #374151;
}

.article-stats {
    display: flex;
    gap: 24px;
}

.reading-time,
.difficulty-level {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    background: #f3f4f6;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.reading-time i,
.difficulty-level i {
    color: #667eea;
}

.article-image {
    margin-bottom: 60px;
}

.article-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.article-intro {
    margin-bottom: 40px;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.6;
    padding: 24px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.table-of-contents h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.table-of-contents ol {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
}

.table-of-contents li {
    counter-increment: toc-counter;
    margin-bottom: 12px;
}

.table-of-contents li::before {
    content: counter(toc-counter);
    background: #2563eb;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.table-of-contents a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #2563eb;
}

.article-section {
    margin: 60px 0;
}

.article-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 12px;
}

.article-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px 0;
}

.article-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
}

.article-section p {
    margin-bottom: 20px;
}

.article-section ul,
.article-section ol {
    margin: 20px 0;
    padding-left: 24px;
}

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

.article-content .highlight-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.article-content .highlight-box h4 {
    color: #1e40af;
    margin-bottom: 16px;
}

.method-comparison {
    display: grid;
    gap: 32px;
    margin: 32px 0;
}

.article-content .method-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-content .method-card h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.pros h4 {
    color: #22c55e;
}

.cons h4 {
    color: #ef4444;
}

.steps-container {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-content .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: static;
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
}

.quick-summary {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.quick-summary h3 {
    color: #16a34a;
    margin-bottom: 20px;
}

.platform-guide,
.concept-explanation {
    margin: 32px 0;
}

.platform-recommendation,
.concept {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

.design-principles,
.content-guidelines {
    margin: 32px 0;
}

.principle {
    margin: 24px 0;
}

.launch-checklist {
    margin: 32px 0;
}

.checklist {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.seo-basics,
.maintenance-schedule,
.growth-strategies {
    margin: 32px 0;
}

.schedule-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.mistakes-list {
    margin: 32px 0;
}

.mistake {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.mistake h3 {
    color: #dc2626;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mistake h3 i {
    color: #dc2626;
    font-size: 1.125rem;
}

.platform-recommendation h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2563eb;
}

.platform-recommendation h4 i {
    color: #2563eb;
    font-size: 1.125rem;
}

.conclusion-summary ul {
    list-style: none;
    padding-left: 0;
}

.conclusion-summary ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-left: 0;
}

.conclusion-summary ul li i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

.conclusion-summary,
.next-steps,
.final-encouragement {
    margin: 32px 0;
}

.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin: 60px 0;
    color: #fff;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #fff;
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.25rem;
    background: #fff;
    color: #667eea;
    border: none;
}

.btn-large:hover {
    background: #f8f9ff;
    color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-home:hover {
    background: #2563eb;
    color: #fff;
}


/* Responsive for Article Page */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .article-stats {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .article-content .step-number {
        align-self: center;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .article-cta {
        padding: 32px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 20px 16px;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.125rem;
        padding: 20px;
    }
    
    .table-of-contents {
        padding: 20px;
    }
    
    .step {
        padding: 20px;
    }
    
    .reading-time,
    .difficulty-level {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Additional Article Styles for AI Article */
.ai-process {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.process-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.process-step h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.process-step h3 i {
    font-size: 1.125rem;
}

.platform-comparison {
    display: grid;
    gap: 32px;
    margin: 32px 0;
}

.ai-platform-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.ai-platform-card h3 {
    color: #2563eb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-label {
    font-weight: 600;
    color: #374151;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

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

.rating-stars .far {
    color: #d1d5db;
}

.pros-cons-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
}

.pros-section,
.cons-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pros-section {
    border-left: 4px solid #22c55e;
}

.cons-section {
    border-left: 4px solid #ef4444;
}

.pros-section h3 {
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cons-section h3 {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.advantage-list,
.disadvantage-list {
    display: grid;
    gap: 16px;
}

.advantage-item,
.disadvantage-item {
    padding: 16px;
    border-radius: 8px;
}

.advantage-item {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.disadvantage-item {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.advantage-item h4 {
    color: #16a34a;
    margin-bottom: 8px;
}

.disadvantage-item h4 {
    color: #dc2626;
    margin-bottom: 8px;
}

.comparison-table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 700;
    color: #1a1a1a;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-category,
.comparison-ai,
.comparison-traditional {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-category {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.comparison-ai {
    border-right: 1px solid #e5e7eb;
}

.winner {
    background: #f0fdf4;
    color: #16a34a;
    font-weight: 600;
}

.optimization-guide {
    margin: 32px 0;
}

.optimization-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.optimization-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.cost-breakdown {
    margin: 32px 0;
}

.cost-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.cost-items {
    display: grid;
    gap: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.cost-name {
    font-weight: 500;
    color: #374151;
}

.cost-price {
    font-weight: 700;
    color: #2563eb;
}

.cost-total {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.total-calculation {
    display: grid;
    gap: 12px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

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

.calc-total {
    border-top: 2px solid #2563eb;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 1.125rem;
}

.cost-comparison {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.cost-comparison h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.future-trends {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.trend-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.trend-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trend-item h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ai-prediction {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.ai-prediction h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.ai-recommendation {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
}

.ai-recommendation h3 {
    color: #1e40af;
    margin-bottom: 16px;
}

/* Responsive for AI Article */
@media (max-width: 768px) {
    .pros-cons-detailed {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-category {
        background: #2563eb;
        color: #fff;
        font-weight: 700;
    }
    
    .comparison-ai,
    .comparison-traditional {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .comparison-traditional {
        border-bottom: 2px solid #e5e7eb;
    }
}

/* Additional Styles for Presentation Site Article */
.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.business-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.business-category:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-category h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.planning-framework {
    margin: 32px 0;
}

.planning-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.planning-step h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.objective-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.objective {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.objective h4 {
    color: #374151;
    margin-bottom: 12px;
}

.audience-analysis,
.competitor-research {
    margin: 20px 0;
}

.page-structure {
    margin: 32px 0;
}

.page-detail {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-detail h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.page-elements h4 {
    color: #374151;
    margin-bottom: 16px;
}

.content-strategy {
    margin: 32px 0;
}

.content-principle {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.content-principle h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.aida-framework {
    display: grid;
    gap: 24px;
}

.aida-step {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 24px;
}

.aida-step h4 {
    color: #1e40af;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.example-box {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    font-style: italic;
}

.content-tips {
    margin: 40px 0;
}

.tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.content-tip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.content-tip:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-tip h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.design-guidelines {
    margin: 32px 0;
}

.design-category {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.design-category h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.color-strategy,
.typography-guide,
.responsive-strategy {
    margin: 20px 0;
}

.color-psychology {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.seo-strategy {
    margin: 32px 0;
}

.seo-category {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-category h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.keyword-research,
.technical-seo,
.local-seo {
    margin: 20px 0;
}

.presentation-platform-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.presentation-platform-card h3 {
    color: #2563eb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cost-scenario {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cost-scenario h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #2563eb;
}

.roi-analysis {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.roi-analysis h3 {
    color: #16a34a;
    margin-bottom: 20px;
}

.maintenance-strategy {
    margin: 32px 0;
}

.maintenance-schedule {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.maintenance-schedule h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.schedule-period {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.schedule-period h4 {
    color: #374151;
    margin-bottom: 12px;
}

.growth-strategies {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.growth-strategies h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.growth-tactic {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.growth-tactic h4 {
    color: #374151;
    margin-bottom: 12px;
}

.success-stories {
    margin: 32px 0;
}

.success-story {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
}

.success-story h3 {
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.story-details {
    margin: 16px 0;
}

.story-details p {
    margin-bottom: 12px;
}

.action-plan {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.action-plan h3 {
    color: #1e40af;
    margin-bottom: 20px;
}

.final-motivation {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

/* Responsive for Presentation Article */
@media (max-width: 768px) {
    .business-types {
        grid-template-columns: 1fr;
    }
    
    .objective-types {
        grid-template-columns: 1fr;
    }
    
    .tip-grid {
        grid-template-columns: 1fr;
    }
    
    .aida-framework {
        gap: 16px;
    }
    
    .aida-step {
        padding: 16px;
    }
}

/* Additional Styles for Insurance Article */
.insurance-types {
    margin: 32px 0;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.insurance-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.insurance-type:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insurance-type h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.strategy-framework {
    margin: 32px 0;
}

.strategy-pillar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.strategy-pillar h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.niche-selection,
.target-audience,
.competitor-analysis {
    margin: 20px 0;
}

.niche-tip {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    font-style: italic;
}

.audience-segment {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.audience-segment h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.analysis-checklist {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.analysis-checklist h4 {
    color: #16a34a;
    margin-bottom: 16px;
}

.domain-strategy {
    margin: 32px 0;
}

.domain-examples {
    margin: 24px 0;
}

.domain-category {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.domain-category h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.domain-category h4 i.fa-trophy {
    color: #f59e0b;
}

.domain-category h4 i.fa-check {
    color: #22c55e;
}

.domain-category h4 i.fa-times-circle {
    color: #ef4444;
}

.domain-seo-impact {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.domain-seo-impact h3 {
    color: #1e40af;
    margin-bottom: 16px;
}

.content-strategy-insurance {
    margin: 32px 0;
}

.content-pillar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-pillar h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.educational-content,
.interactive-tools,
.legal-content {
    margin: 20px 0;
}

.content-type {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.content-type h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-length-strategy {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.content-length-strategy h3 {
    color: #92400e;
    margin-bottom: 20px;
}

.content-structure {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.insurance-specializations {
    margin: 32px 0;
}

.specialization-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.specialization-card h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.specialization-details {
    margin: 20px 0;
}

.seo-insurance-strategy {
    margin: 32px 0;
}

.seo-pillar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-pillar h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.keyword-categories {
    margin: 20px 0;
}

.keyword-type {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.keyword-type h4 {
    color: #374151;
    margin-bottom: 12px;
}

.technical-optimization,
.link-building-strategy {
    margin: 20px 0;
}

.lead-generation-tactics {
    margin: 32px 0;
}

.lead-tactic {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lead-tactic h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lead-magnets {
    margin: 20px 0;
}

.magnet-type {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.magnet-type h4 {
    color: #374151;
    margin-bottom: 12px;
}

.conversion-funnel {
    margin: 20px 0;
}

.funnel-stage {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.funnel-stage h4 {
    color: #1e40af;
    margin-bottom: 12px;
}

.roi-calculation {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.roi-calculation h3 {
    color: #16a34a;
    margin-bottom: 20px;
}

.roi-scenarios {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.roi-scenario {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
}

.roi-scenario h4 {
    color: #16a34a;
    margin-bottom: 12px;
}

.success-cases {
    margin: 32px 0;
}

.success-case {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.success-case h3 {
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.case-details {
    margin: 20px 0;
}

.case-before,
.case-strategy,
.case-results {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.case-before h4 {
    color: #ef4444;
    margin-bottom: 12px;
}

.case-strategy h4 {
    color: #f59e0b;
    margin-bottom: 12px;
}

.case-results h4 {
    color: #16a34a;
    margin-bottom: 12px;
}

.legal-requirements {
    margin: 32px 0;
}

.legal-category {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-category h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.licensing-info,
.gdpr-compliance,
.transparency-requirements {
    margin: 20px 0;
}

.implementation-roadmap {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.implementation-roadmap h3 {
    color: #1e40af;
    margin-bottom: 24px;
}

.roadmap-week {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.roadmap-week h4 {
    color: #2563eb;
    margin-bottom: 12px;
}

.final-advice {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

/* Responsive for Insurance Article */
@media (max-width: 768px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-types {
        grid-template-columns: 1fr;
    }
    
    .roi-scenarios {
        gap: 16px;
    }
}

/* Additional Styles for eCommerce Article */
.business-plan-framework {
    margin: 32px 0;
}

.plan-component {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.plan-component h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.objectives-breakdown,
.market-analysis,
.financial-planning {
    margin: 20px 0;
}

.target-personas {
    margin: 20px 0;
}

.persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 16px 0;
}

.persona {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.persona h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.cost-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.cost-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.cost-category h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-selection-strategy {
    margin: 32px 0;
}

.selection-criteria {
    margin: 24px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.criterion {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.criterion:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.criterion h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.winning-niches {
    margin: 32px 0;
}

.niche-categories {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.niche-category {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.niche-category h4 {
    color: #2563eb;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.platform-comparison-ecommerce {
    margin: 32px 0;
}

.ecommerce-platform-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.ecommerce-platform-card h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.legal-framework {
    margin: 32px 0;
}

.legal-requirement {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-requirement h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.business-registration,
.mandatory-documents,
.billing-requirements {
    margin: 20px 0;
}

.business-type {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.business-type h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.supplier-strategy {
    margin: 32px 0;
}

.supplier-types {
    margin: 24px 0;
}

.supplier-comparison {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.supplier-option {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.supplier-option h4 {
    color: #2563eb;
    margin-bottom: 16px;
}

.dropshipping-vs-stock {
    margin: 32px 0;
}

.business-model-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 24px 0;
}

.business-model {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.business-model h4 {
    color: #2563eb;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.25rem;
}

.model-details h5 {
    color: #374151;
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.ux-design-guide {
    margin: 32px 0;
}

.design-principle {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.design-principle h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.design-rules {
    margin: 20px 0;
}

.design-rule {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.design-rule h4 {
    color: #374151;
    margin-bottom: 12px;
}

.mobile-optimization {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.mobile-optimization h3 {
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-requirements {
    margin: 20px 0;
}

.marketing-framework {
    margin: 32px 0;
}

.marketing-channel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.marketing-channel h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.seo-ecommerce,
.paid-advertising,
.email-strategy {
    margin: 20px 0;
}

.seo-layers {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.seo-layer {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.seo-layer h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.ad-platform {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.ad-platform h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.conversion-optimization {
    margin: 32px 0;
}

.cro-strategy {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cro-strategy h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.optimization-areas {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.optimization-area {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.optimization-area h4 {
    color: #374151;
    margin-bottom: 12px;
}

.ab-testing-guide {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.ab-testing-guide h3 {
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testing-elements {
    margin: 20px 0;
}

.test-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.test-category h5 {
    color: #92400e;
    margin-bottom: 12px;
    font-weight: 600;
}

.scaling-strategy {
    margin: 32px 0;
}

.scaling-phase {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.scaling-phase h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.phase-objectives {
    margin: 20px 0;
}

.phase-objectives h4 {
    color: #374151;
    margin-bottom: 16px;
}

.success-metrics {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.success-metrics h3 {
    color: #16a34a;
    margin-bottom: 20px;
}

.metrics-table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.metric-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-name,
.metric-phase1,
.metric-phase2,
.metric-phase3 {
    padding: 12px 16px;
    text-align: center;
}

.metric-name {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    text-align: left;
}

.metric-phase1 {
    background: #fef2f2;
    color: #dc2626;
    font-weight: 600;
}

.metric-phase2 {
    background: #fefbf2;
    color: #d97706;
    font-weight: 600;
}

.metric-phase3 {
    background: #f0fdf4;
    color: #16a34a;
    font-weight: 600;
}

.ecommerce-success-stories {
    margin: 32px 0;
}

.story-timeline {
    margin: 20px 0;
}

.timeline-phase {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
    border-left: 4px solid #2563eb;
}

.timeline-phase h4 {
    color: #2563eb;
    margin-bottom: 12px;
}

.niche-success {
    margin: 20px 0;
}

.niche-results {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.niche-results h4 {
    color: #16a34a;
    margin-bottom: 12px;
}

.action-roadmap {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.action-roadmap h3 {
    color: #1e40af;
    margin-bottom: 24px;
}

.roadmap-ecommerce {
    margin: 20px 0;
}

.roadmap-week {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.roadmap-week h4 {
    color: #2563eb;
    margin-bottom: 12px;
}

/* Responsive for eCommerce Article */
@media (max-width: 768px) {
    .persona-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-categories {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .business-model-comparison {
        grid-template-columns: 1fr;
    }
    
    .metric-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .metric-name,
    .metric-phase1,
    .metric-phase2,
    .metric-phase3 {
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Additional Styles for Travel Blog Article */
.travel-blogger-profiles {
    margin: 32px 0;
}

.blogger-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.blogger-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.blogger-type:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blogger-type h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.travel-platforms-comparison {
    margin: 32px 0;
}

.travel-platform-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.travel-platform-card h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.platform-benefits {
    margin: 20px 0;
}

.platform-benefits h4 {
    color: #374151;
    margin-bottom: 16px;
}

.content-strategy-travel {
    margin: 32px 0;
}

.content-types {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-types h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.content-type-grid {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.travel-content-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.travel-content-type h4 {
    color: #374151;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-structure h5 {
    color: #2563eb;
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.storytelling-guide {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.storytelling-guide h3 {
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.storytelling-framework {
    margin: 20px 0;
}

.story-element {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.story-element h4 {
    color: #92400e;
    margin-bottom: 12px;
}

.monetization-strategies {
    margin: 32px 0;
}

.monetization-method {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.monetization-method h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.affiliate-details,
.collaboration-guide,
.digital-products {
    margin: 20px 0;
}

.affiliate-programs {
    margin: 20px 0;
}

.affiliate-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.affiliate-category h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.affiliate-tips {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.collaboration-types {
    margin: 20px 0;
}

.collab-type {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.collab-type h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.pitch-strategy {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.pitch-strategy h4 {
    color: #16a34a;
    margin-bottom: 16px;
}

.product-categories {
    margin: 20px 0;
}

.product-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.product-category h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.social-media-strategy {
    margin: 32px 0;
}

.platform-strategy {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.platform-strategy h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.instagram-guide,
.youtube-strategy {
    margin: 20px 0;
}

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

.pillar {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.pillar h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.instagram-growth,
.youtube-monetization {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.collaboration-framework {
    margin: 32px 0;
}

.collaboration-preparation,
.outreach-strategy {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.collaboration-preparation h3,
.outreach-strategy h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.preparation-steps,
.outreach-process {
    margin: 20px 0;
}

.prep-step,
.outreach-step {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.prep-step h4,
.outreach-step h5 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.pricing-guide {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.pricing-guide h5 {
    color: #16a34a;
    margin-bottom: 12px;
}

.travel-seo-strategy {
    margin: 32px 0;
}

.keyword-strategy,
.content-seo {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.keyword-strategy h3,
.content-seo h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.travel-keywords {
    margin: 20px 0;
}

.keyword-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.keyword-category h4 {
    color: #374151;
    margin-bottom: 12px;
}

.seo-checklist,
.local-seo-travel {
    margin: 20px 0;
}

.equipment-guide {
    margin: 32px 0;
}

.equipment-category {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.equipment-category h3 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gear-recommendations,
.tech-requirements {
    margin: 20px 0;
}

.gear-tier {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.gear-tier h4 {
    color: #374151;
    margin-bottom: 12px;
}

.software-recommendations {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.software-recommendations h4 {
    color: #1e40af;
    margin-bottom: 16px;
}

.success-stories-travel {
    margin: 32px 0;
}

.travel-success-story {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.travel-success-story h3 {
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.success-timeline {
    margin: 20px 0;
}

.timeline-period {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
    border-left: 4px solid #22c55e;
}

.timeline-period h4 {
    color: #16a34a;
    margin-bottom: 12px;
}

.couple-strategy,
.adventure-strategy {
    margin: 20px 0;
}

.couple-results,
.adventure-results {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.couple-results h4,
.adventure-results h4 {
    color: #16a34a;
    margin-bottom: 12px;
}

.first-steps-guide {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.first-steps-guide h3 {
    color: #1e40af;
    margin-bottom: 20px;
}

.immediate-actions {
    margin: 20px 0;
}

.action-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.action-item h4 {
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.final-inspiration {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}

/* Responsive for Travel Blog Article */
@media (max-width: 768px) {
    .blogger-types {
        grid-template-columns: 1fr;
    }
    
    .content-pillars {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.cta-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"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>') repeat;
    opacity: 0.4;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

.cta-text {
    color: #fff;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.125rem;
    font-weight: 500;
}

.cta-benefit i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-cta {
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta.btn-primary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #fff;
}

.btn-cta.btn-primary:hover {
    background: #f8faff;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-stats {
    display: grid;
    gap: 24px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-stats .stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-stats .stat-number i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
}

.cta-stats .stat-number span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.cta-guarantee {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
}

.guarantee-box i {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 4px;
}

.guarantee-text h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.guarantee-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Responsive for CTA Section */
@media (max-width: 1024px) {
    .cta-content {
        gap: 40px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .cta-benefits {
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 400px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .guarantee-box i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-benefit {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 1.125rem;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .cta-stats .stat-number span {
        font-size: 2rem;
    }
    
    .cta-stats .stat-number i {
        font-size: 1.25rem;
    }
    
    .cta-guarantee {
        padding: 24px;
    }
    
    .guarantee-text h3 {
        font-size: 1.25rem;
    }
    
    .guarantee-text p {
        font-size: 0.95rem;
    }
}

/* Legal Pages Styles */
/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    margin-top: 0;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-title i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.footer-description strong {
    color: #f59e0b;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.social-link i {
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #f59e0b;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

/* Footer SEO Section */
.footer-seo {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-seo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-seo p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

.footer-seo strong {
    color: #f59e0b;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 32px 0;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-badges a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-badges a:hover {
    transform: translateY(-3px);
}

.footer-badges img {
    height: 60px;
    width: auto;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-credits {
    margin-top: 12px;
}

.footer-credits i {
    color: #f59e0b;
    margin: 0 4px;
}

.qos-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.qos-link:hover {
    color: #fff;
}

.qos-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f59e0b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.qos-link:hover::after {
    transform: scaleX(1);
}

/* Remove gap between CTA and Footer */
.cta-section {
    margin-bottom: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-seo {
        padding: 24px;
    }
    
    .footer-seo h4 {
        font-size: 1.25rem;
    }
    
    .footer-seo p {
        font-size: 0.95rem;
    }
    
    .footer-badges {
        gap: 20px;
    }
    
    .footer-badges img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 32px;
    }
    
    .footer-title {
        font-size: 1.125rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-seo {
        padding: 20px;
        border-radius: 12px;
    }
    
    .footer-seo h4 {
        font-size: 1.125rem;
    }
    
    .footer-seo p {
        font-size: 0.9rem;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer-badges img {
        height: 45px;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
}

/* Legal Page Styles */
.legal-page {
    max-width: 900px;
}

.legal-intro {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.legal-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section {
    margin: 48px 0;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
}

.legal-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h3 i {
    color: #2563eb;
    font-size: 1.125rem;
}

.legal-section p {
    margin-bottom: 16px;
    color: #4b5563;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #4b5563;
}

.operator-details ul {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    list-style: none;
    padding-left: 20px;
}

.operator-details li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.operator-details li:last-child {
    border-bottom: none;
}

.definitions {
    display: grid;
    gap: 20px;
}

.definition-item {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 20px;
}

.definition-item h3 {
    color: #2563eb;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.definition-item p {
    margin: 0;
    font-style: italic;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.data-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.data-category:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.data-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.processing-purposes {
    display: grid;
    gap: 24px;
}

.purpose-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.purpose-item h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.purpose-item p {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
    font-weight: 600;
    color: #1e40af;
}

.collection-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.collection-method {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.collection-method h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.retention-periods {
    display: grid;
    gap: 24px;
}

.retention-item {
    background: #f8fafc;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 20px;
}

.retention-item h3 {
    color: #16a34a;
    margin-bottom: 12px;
}

.user-rights {
    margin: 20px 0;
}

.rights-intro {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #1e40af;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.right-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.right-item h3 {
    color: #2563eb;
    margin-bottom: 12px;
    font-size: 1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.95rem;
}

.rights-exercise {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.rights-exercise h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.cookies-info {
    margin: 20px 0;
}

.cookie-types {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.cookie-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.cookie-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.cookie-management {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.cookie-management h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.data-sharing {
    margin: 20px 0;
}

.sharing-categories {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.sharing-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.sharing-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.sharing-safeguards {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.sharing-safeguards h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.security-measures {
    margin: 20px 0;
}

.security-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 24px 0;
}

.security-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.security-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.incident-response {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.incident-response h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.data-transfers {
    margin: 20px 0;
}

.transfer-scenarios {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.transfer-scenario {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.transfer-scenario h3 {
    color: #2563eb;
    margin-bottom: 12px;
}

.transfer-safeguards {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.transfer-safeguards h3 {
    color: #1e40af;
    margin-bottom: 16px;
}

.complaint-rights {
    margin: 20px 0;
}

.authority-contact {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.authority-contact h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.contact-details ul {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    list-style: none;
    padding-left: 16px;
}

.contact-details li {
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-details li:last-child {
    border-bottom: none;
}

.complaint-process {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.complaint-process h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.policy-updates {
    margin: 20px 0;
}

.notification-process,
.continued-use {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.notification-process h3,
.continued-use h3 {
    color: #374151;
    margin-bottom: 16px;
}

.dpo-contact {
    margin: 20px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.contact-method {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.contact-method h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.contact-method p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.response-commitment {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.response-commitment h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.applicable-law {
    margin: 20px 0;
}

.legal-framework {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.law-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.law-item h3 {
    color: #2563eb;
    margin-bottom: 12px;
}

.jurisdiction {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.jurisdiction h3 {
    color: #1e40af;
    margin-bottom: 16px;
}

.additional-info {
    margin: 20px 0;
}

.info-categories {
    display: grid;
    gap: 20px;
}

.info-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.info-category h3 {
    color: #2563eb;
    margin-bottom: 12px;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 20px 16px;
    }
    
    .legal-section {
        padding: 24px 20px;
        margin: 32px 0;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .data-categories {
        grid-template-columns: 1fr;
    }
    
    .collection-methods {
        grid-template-columns: 1fr;
    }
    
    .security-categories {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-intro {
        padding: 20px;
    }
    
    .legal-intro p {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 20px 16px;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .legal-content {
        font-size: 0.95rem;
    }
}

/* Additional Styles for Terms and Conditions */
.terms-acceptance {
    margin: 20px 0;
}

.acceptance-conditions,
.non-acceptance {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.acceptance-conditions h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.non-acceptance {
    background: #fef2f2;
    border-color: #fecaca;
}

.non-acceptance h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.services-description {
    margin: 20px 0;
}

.service-categories {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.service-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.service-category h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.service-limitations {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.service-limitations h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.user-obligations {
    margin: 20px 0;
}

.user-rights,
.user-responsibilities,
.prohibited-activities {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.user-rights h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.user-responsibilities h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.prohibited-activities {
    background: #fef2f2;
    border-color: #fecaca;
}

.prohibited-activities h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.intellectual-property {
    margin: 20px 0;
}

.copyright-info,
.usage-permissions,
.usage-restrictions,
.trademark-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.copyright-info h3,
.trademark-info h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.usage-permissions h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.usage-restrictions {
    background: #fef2f2;
    border-color: #fecaca;
}

.usage-restrictions h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.user-content {
    margin: 20px 0;
}

.content-types,
.content-standards,
.content-moderation,
.content-ownership {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.content-types h3,
.content-standards h3,
.content-ownership h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.content-moderation {
    background: #fef3c7;
    border-color: #f59e0b;
}

.content-moderation h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.service-availability {
    margin: 20px 0;
}

.uptime-commitment,
.maintenance-policy,
.force-majeure {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.uptime-commitment h3,
.maintenance-policy h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.force-majeure {
    background: #fef2f2;
    border-color: #fecaca;
}

.force-majeure h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.liability-limitations {
    margin: 20px 0;
}

.general-disclaimer,
.damage-limitations,
.third-party-disclaimer,
.maximum-liability {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.general-disclaimer h3,
.third-party-disclaimer h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.damage-limitations,
.maximum-liability {
    background: #fef2f2;
    border-color: #fecaca;
}

.damage-limitations h3,
.maximum-liability h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.terms-modification {
    margin: 20px 0;
}

.modification-rights,
.notification-procedure,
.acceptance-new-terms {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.modification-rights h3,
.notification-procedure h3,
.acceptance-new-terms h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.termination-terms {
    margin: 20px 0;
}

.user-termination,
.operator-termination,
.termination-effects {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.user-termination h3,
.termination-effects h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.operator-termination {
    background: #fef2f2;
    border-color: #fecaca;
}

.operator-termination h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.minor-protection {
    margin: 20px 0;
}

.age-restrictions,
.parental-guidance,
.minor-data-policy {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.age-restrictions h3,
.parental-guidance h3,
.minor-data-policy h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.governing-law {
    margin: 20px 0;
}

.applicable-legislation,
.jurisdiction-clause,
.dispute-resolution {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.applicable-legislation h3,
.jurisdiction-clause h3,
.dispute-resolution h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.final-provisions {
    margin: 20px 0;
}

.severability,
.entire-agreement,
.waiver-clause,
.assignment,
.survival-clause {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.severability h3,
.entire-agreement h3,
.waiver-clause h3,
.assignment h3,
.survival-clause h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.contact-information {
    margin: 20px 0;
}

.contact-commitment {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.contact-commitment h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.final-acknowledgment {
    margin: 20px 0;
}

.user-acknowledgment,
.effective-date,
.version-control,
.legal-validity {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.user-acknowledgment h3,
.effective-date h3,
.version-control h3,
.legal-validity h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.important-notice {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #2563eb;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.notice-content h3 {
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.notice-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

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

.notice-buttons .btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 8px;
}

/* Responsive for Terms and Conditions */
@media (max-width: 768px) {
    .important-notice {
        padding: 32px 20px;
        margin: 40px 0;
    }
    
    .notice-content h3 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .notice-content p {
        font-size: 1rem;
    }
    
    .notice-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .notice-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .important-notice {
        padding: 24px 16px;
    }
    
    .notice-content h3 {
        font-size: 1.125rem;
    }
    
    .notice-content p {
        font-size: 0.95rem;
    }
    
    .notice-buttons .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Additional Styles for Cookie Policy */
.cookie-definition {
    margin: 20px 0;
}

.definition-main,
.cookie-components,
.cookie-benefits {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.definition-main h3,
.cookie-components h3,
.cookie-benefits h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.cookie-types-detailed {
    margin: 20px 0;
}

.cookie-type-category {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-type-category h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cookie-details {
    margin: 20px 0;
}

.cookie-details > p {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1e40af;
}

.cookie-list {
    display: grid;
    gap: 20px;
}

.cookie-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.cookie-item h4 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.cookie-item ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.cookie-item li {
    padding: 4px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.third-party-cookies {
    margin: 20px 0;
}

.third-party-services {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.third-party-services h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.service-details {
    margin: 20px 0;
}

.third-party-service {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.third-party-service h4 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.service-info li {
    padding: 4px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-info li:last-child {
    border-bottom: none;
}

.third-party-control {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.third-party-control h3 {
    color: #92400e;
    margin-bottom: 16px;
}

.cookie-duration {
    margin: 20px 0;
}

.duration-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 24px 0;
}

.duration-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.duration-type h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.retention-schedule {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.retention-schedule h3 {
    color: #374151;
    margin-bottom: 20px;
}

.retention-table {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.retention-row:first-child {
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

.retention-row:first-child .retention-category,
.retention-row:first-child .retention-period,
.retention-row:first-child .retention-purpose {
    color: #fff;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-category,
.retention-period,
.retention-purpose {
    padding: 12px 16px;
    text-align: center;
    color: #374151;
}

.retention-category {
    text-align: left;
    font-weight: 500;
}

.cookie-management {
    margin: 20px 0;
}

.browser-settings {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.browser-settings h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.browser-guide {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.browser-guide h4 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.browser-guide ol {
    margin: 0;
    padding-left: 20px;
}

.browser-guide li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.cookie-preferences,
.opt-out-consequences {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.cookie-preferences h3,
.opt-out-consequences h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.consequences-list {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.consequence-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.consequence-item h4 {
    color: #374151;
    margin-bottom: 8px;
    font-weight: 600;
}

.consequence-item p {
    margin: 0;
    font-size: 0.95rem;
}

.consent-management {
    margin: 20px 0;
}

.consent-types {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.consent-types h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.consent-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.consent-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.consent-category h4 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.consent-category p {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    padding: 12px;
    margin-top: 12px;
    font-weight: 600;
    color: #1e40af;
    font-size: 0.9rem;
}

.consent-process,
.consent-withdrawal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.consent-process h3,
.consent-withdrawal h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.similar-technologies {
    margin: 20px 0;
}

.technology-types {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.technology-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.technology-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.technology-item h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.performance-impact {
    margin: 20px 0;
}

.performance-benefits,
.performance-considerations {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.performance-benefits h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.performance-considerations h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.cookie-security {
    margin: 20px 0;
}

.security-measures {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.security-measures h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.security-features {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.security-feature {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.security-feature h4 {
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.security-monitoring {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.security-monitoring h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

.regulatory-compliance {
    margin: 20px 0;
}

.gdpr-compliance,
.ePrivacy-compliance,
.national-compliance {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.gdpr-compliance h3,
.ePrivacy-compliance h3,
.national-compliance h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.policy-updates {
    margin: 20px 0;
}

.update-reasons,
.notification-methods,
.version-history {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.update-reasons h3,
.notification-methods h3,
.version-history h3 {
    color: #2563eb;
    margin-bottom: 16px;
}

.contact-information {
    margin: 20px 0;
}

.specialized-support {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.specialized-support h3 {
    color: #16a34a;
    margin-bottom: 16px;
}

/* Responsive for Cookie Policy */
@media (max-width: 768px) {
    .duration-categories {
        grid-template-columns: 1fr;
    }
    
    .consent-categories {
        grid-template-columns: 1fr;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .retention-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .retention-category,
    .retention-period,
    .retention-purpose {
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .retention-row:first-child .retention-category,
    .retention-row:first-child .retention-period,
    .retention-row:first-child .retention-purpose {
        background: #2563eb;
        color: #fff;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    color: #fff;
    font-size: 1.75rem;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    border: 3px solid #fff;
    animation: notificationBounce 1s infinite;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    max-height: calc(100vh - 120px);
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-chat.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: #075e54;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #fff;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #fff;
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    background: #e5ddd5;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whatsapp-bg" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="90" cy="50" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="50" cy="90" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23whatsapp-bg)"/></svg>');
}

.chat-content {
    padding: 20px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.message.received {
    align-items: flex-start;
}

.message.sent {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.message.received .message-content {
    background: #fff;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.sent .message-content {
    background: #dcf8c6;
    border-bottom-right-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 0.75rem;
    color: #667781;
    margin-top: 4px;
    padding: 0 8px;
}

.chat-options {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #e9edef;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-btn {
    background: #f0f2f5;
    border: 1px solid #e9edef;
    border-radius: 20px;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #41525d;
}

.option-btn:hover {
    background: #e9edef;
    border-color: #25d366;
}

.option-btn i {
    color: #25d366;
    font-size: 1rem;
    width: 20px;
}

.chat-input-area {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #e9edef;
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f2f5;
    border-radius: 24px;
    padding: 8px 16px;
}

#chatInput {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 0.95rem;
    padding: 8px 0;
    color: #41525d;
}

#chatInput::placeholder {
    color: #8696a0;
}

.send-btn {
    background: #25d366;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.send-btn:hover {
    background: #20b954;
    transform: scale(1.05);
}

.send-btn:disabled {
    background: #8696a0;
    cursor: not-allowed;
    transform: none;
}

/* Contact Action Buttons */
.contact-actions {
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #e9edef;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.contact-actions.active {
    display: flex;
}

.contact-btn {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #20b954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.contact-btn.secondary {
    background: #128c7e;
}

.contact-btn.secondary:hover {
    background: #0d7377;
}

.contact-btn.tertiary {
    background: #34495e;
}

.contact-btn.tertiary:hover {
    background: #2c3e50;
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
}

@keyframes notificationBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    animation: messageSlideIn 0.3s ease;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    max-width: 80%;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #8696a0;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat {
        width: 320px;
        height: 450px;
        max-height: calc(100vh - 100px);
        bottom: 75px;
        right: -10px;
    }
    
    .chat-content {
        padding: 16px;
    }
    
    .chat-options {
        padding: 12px 16px;
    }
    
    .option-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-chat {
        width: 300px;
        height: 400px;
        max-height: calc(100vh - 80px);
        bottom: 70px;
        right: -20px;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-info h4 {
        font-size: 0.95rem;
    }
    
    .chat-status {
        font-size: 0.75rem;
    }
    
    .chat-content {
        padding: 12px;
    }
    
    .message-content {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
    
    .option-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .chat-input-container {
        padding: 6px 12px;
    }
    
    #chatInput {
        font-size: 0.9rem;
    }
    
    .send-btn {
        width: 32px;
        height: 32px;
    }
}

/* Hide widget on very small screens to avoid interference */
@media (max-width: 360px) {
    .whatsapp-widget {
        display: none;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    color: #fff;
}

.cookie-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.cookie-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.cookie-text p {
    font-size: 0.875rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f59e0b;
}

.category-header label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    cursor: pointer;
    flex: 1;
}

.category-header label i {
    color: #f59e0b;
    font-size: 0.875rem;
}

.category-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.cookie-btn.primary {
    background: #22c55e;
    color: #fff;
}

.cookie-btn.primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.cookie-btn.secondary {
    background: #ef4444;
    color: #fff;
}

.cookie-btn.secondary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.cookie-btn.tertiary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cookie-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #fff;
}

.cookie-links a i {
    font-size: 0.8rem;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: #2563eb;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.cookie-category-detailed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.category-toggle {
    background: #f8fafc;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.category-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2563eb;
}

.category-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    flex: 1;
}

.category-toggle label i {
    color: #2563eb;
    font-size: 1.125rem;
}

.required-badge {
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-details {
    padding: 20px;
    background: #fff;
}

.category-details p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-examples {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.cookie-examples h4 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cookie-examples ul {
    margin: 0;
    padding-left: 20px;
}

.cookie-examples li {
    color: #6b7280;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.third-party-info {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 12px;
}

.third-party-info h4 {
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.third-party-info p {
    color: #4b5563;
    font-size: 0.85rem;
    margin: 0;
}

.modal-footer {
    background: #f8fafc;
    padding: 20px 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.modal-footer .cookie-btn {
    min-width: 160px;
    justify-content: center;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 160px; /* Above cookie button */
    left: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px);
}

.scroll-to-top-btn i {
    animation: bounceUp 2s infinite;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Scroll to Top Button Responsive */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 140px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        bottom: 120px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Cookie Management Button (Persistent) */
.cookie-management-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.manage-btn {
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    animation: cookiePulse 3s infinite;
}

.manage-btn:hover {
    background: #d97706;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

@keyframes cookiePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.6), 0 0 0 8px rgba(245, 158, 11, 0.1);
    }
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-content {
        padding: 16px;
    }
    
    .cookie-info {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .cookie-text h3 {
        font-size: 1.125rem;
        margin-bottom: 4px;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .cookie-category {
        padding: 8px 12px;
    }
    
    .category-description {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .cookie-actions {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
        max-width: 140px;
    }
    
    .cookie-links {
        gap: 16px;
    }
    
    .cookie-links a {
        font-size: 0.7rem;
    }
    
    .modal-content {
        margin: 20px;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 16px 20px;
        flex-shrink: 0;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 16px 20px;
        flex-direction: column;
        flex-shrink: 0;
    }
    
    .modal-footer .cookie-btn {
        width: 100%;
        max-width: none;
    }
    
    .cookie-management-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .manage-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 12px;
    }
    
    .cookie-info {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .cookie-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .cookie-categories {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .cookie-category {
        padding: 6px 10px;
    }
    
    .category-header {
        gap: 8px;
        margin-bottom: 0;
    }
    
    .category-header label {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .category-header input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .cookie-actions {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .cookie-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 90px;
        max-width: 120px;
    }
    
    .modal-content {
        margin: 10px;
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 14px 16px;
        flex-shrink: 0;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 14px 16px;
        flex-shrink: 0;
    }
    
    .modal-footer .cookie-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .category-toggle {
        padding: 12px 16px;
    }
    
    .category-details {
        padding: 16px;
    }
    
    .cookie-management-btn {
        bottom: 16px;
        left: 16px;
    }
    
    .manage-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* Header Responsive Styles */
@media (max-width: 1024px) {
    .header-nav {
        margin: 0 20px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-content {
        min-height: 70px;
        padding: 12px 0;
    }
    
    .logo-link {
        font-size: 1.25rem;
    }
    
    .logo-link i {
        font-size: 1.5rem;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-nav.active {
        max-height: 300px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 16px 24px;
        border-radius: 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(37, 99, 235, 0.05);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .whatsapp-header-btn .btn-text {
        display: none;
    }
    
    .whatsapp-header-btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .whatsapp-header-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .header-content {
        min-height: 65px;
        padding: 10px 0;
    }
    
    .logo-link {
        font-size: 1.125rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-link i {
        font-size: 1.75rem;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .whatsapp-header-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .whatsapp-header-btn i {
        font-size: 1.125rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 18px;
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
