/* Cache Busting - Version 20241202 */
/* Performance Optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Critical CSS - Above the fold */
.hero {
    will-change: transform;
    transform: translateZ(0);
}

.header {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize animations */
.tool-card,
.service-card,
.btn {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce repaints */
.tool-card:hover,
.service-card:hover {
    transform: translateY(-8px) translateZ(0);
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Modern CSS Variables & Professional Design System */
:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --success-color: #10b981;
    --danger-color: #dc2626;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(10px);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --black: #000000;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header Styles - Stable Design */
.header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-xl);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #111827;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

.btn-nav {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.btn-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

.btn-nav:hover {
    color: #111827;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6b7280;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: #f8fafc;
    color: #3b82f6;
}

.mobile-nav-list .btn-nav {
    margin: 1rem 1.5rem;
    text-align: center;
    display: block;
}

/* Hero Section - Stable Design */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #1e40af;
    color: #ffffff;
    border: 2px solid #1e40af;
}

.hero-buttons .btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.hero-buttons .btn-secondary.btn-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%) !important;
    color: #ffffff !important;
    border: 2px solid #3b82f6 !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.hero-buttons .btn-secondary.btn-highlight:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-panel {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
    margin: 0.5rem;
    min-width: 250px;
}

.btn-panel:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

/* Buttons - Stable Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    height: 44px;
    min-height: 44px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

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

.btn-secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    height: 52px;
    min-height: 52px;
}

/* Sections - Stable Spacing */
.section {
    padding: 4rem 0;
}

/* Tools Section - Reduced Padding */
.tools {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing {
    padding: 4rem 0;
    background: #ffffff;
}

/* Grid Systems - Stable Layout */
.tools-grid,
.services-grid,
.pricing-grid,
.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tools-grid {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Filter Buttons */
.tools-filter {
    display: flex;
    gap: 0.75rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f8fafc;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.load-more-container .btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.load-more-container .btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

/* Cards - Equal Height Buttons */
/* Cards - Equal Height Buttons */
.tool-card,
.pricing-card,
.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: auto;
    min-height: auto;
    max-height: none;
    display: block;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    height: auto;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.08;
}

.tool-card:hover,
.service-card:hover,
.pricing-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.tool-card h3,
.service-card h3,
.pricing-card h3,
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
    text-align: center;
    overflow: visible !important;
    white-space: normal !important;
    line-height: 1.4 !important;
}

.tool-card p,
.service-card p,
.pricing-card p,
.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
    text-align: center;
    overflow: visible !important;
    white-space: normal !important;
}

.tool-card .btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    display: inline-block;
    height: 44px;
    min-height: 44px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #6b7280;
    flex-shrink: 0;
    height: 2.5rem;
    display: flex;
    align-items: center;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1rem 0;
    text-align: center;
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-height: 44px;
    flex-shrink: 0;
}

.service-card .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 3rem;
}

/* Tool Pages */
.tool-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background: var(--white);
}

.tool-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 70px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.tool-header::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e5e7eb" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e5e7eb" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e5e7eb" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e5e7eb" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e5e7eb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.tool-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding-top: 0;
}

.tool-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding-top: 0;
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    display: block;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--gray-400);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text::before {
    content: '•';
    color: var(--gray-400);
    font-weight: bold;
}

.trending-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.tool-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.tool-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.tool-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.tool-info {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.tool-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.tool-info ul {
    list-style: none;
    padding: 0;
}

.tool-info li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.tool-info li:last-child {
    border-bottom: none;
}

.tool-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tool-result {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    border-left: 4px solid var(--primary-color);
}

/* Generator Form */
.generator-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.generator-form select {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.generator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hashtag-result {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.hashtag-result h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    font-weight: 600;
}

.hashtag-result .hashtag-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.hashtag-result .hashtag-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hashtag-result .hashtag-tag:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hashtag-result .hashtag-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hashtag-result .hashtag-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hashtag-result .hashtag-actions .btn-copy {
    background: #10b981;
    color: var(--white);
}

.hashtag-result .hashtag-actions .btn-copy:hover {
    background: #059669;
    transform: translateY(-1px);
}

.hashtag-result .hashtag-actions .btn-generate {
    background: var(--primary-color);
    color: var(--white);
}

.hashtag-result .hashtag-actions .btn-generate:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Templates Gallery */
.templates-gallery {
    margin-top: var(--space-xl);
}

.template-categories {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.category-btn {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.template-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

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

.template-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.template-name {
    padding: var(--space-md);
    font-weight: 500;
    color: var(--gray-700);
}

/* Footer - Clean Modern Design */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.footer-brand {
    text-align: center;
    grid-column: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    grid-column: span 2;
    width: 100%;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.footer-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-tools-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
}

.footer-tools-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-tools-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-tools-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.8rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.8rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffffff;
}

.footer-cta {
    text-align: center;
    padding-top: 1rem;
}

.footer-cta .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.footer-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}


/* Modern Responsive Design */
/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .tools-grid,
    .services-grid,
    .pricing-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .tools-grid,
    .services-grid,
    .pricing-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tool-category .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header .container {
        padding: 0 1.5rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tools-grid,
    .services-grid,
    .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tool-category .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .tool-card,
    .service-card,
    .pricing-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .tool-card h3,
    .service-card h3,
    .pricing-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
        padding: 3rem 0;
        margin-top: 70px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tools-filter {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .tools-filter {
        gap: 0.375rem;
        margin: 1.5rem 0;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .services {
        margin-bottom: 2rem;
    }
    
    .pricing {
        margin-bottom: 2rem;
    }
    
    .tool-card,
    .service-card,
    .pricing-card,
    .feature-card {
        height: auto;
        min-height: auto;
        padding: 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tool-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tool-header {
        padding: 2rem 0;
    }
    
    .tool-header h1 {
        font-size: 2.25rem;
    }
    
    .tool-header p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-display {
        margin-top: 1rem;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .stars {
        font-size: 1.25rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
    
    .trending-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .tool-form {
        padding: 1.5rem;
    }
    
    .templates-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-sitemap {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        height: 60px;
    }
    
    .header .container {
        padding: 0 1rem;
    }
    
    .header-content {
        height: 60px;
        gap: 0.75rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .tool-card,
    .service-card,
    .pricing-card,
    .feature-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .tool-card h3,
    .service-card h3,
    .pricing-card h3,
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .tool-card p,
    .service-card p,
    .pricing-card p,
    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-tools {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-tools h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-tools ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-tools ul li a {
        font-size: 0.85rem;
    }
}
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .tools-filter {
        gap: 0.375rem;
        padding: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
        min-height: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat h3 {
        font-size: 1.25rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .tools-filter {
        gap: 0.25rem;
        margin: 1rem 0;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .services {
        margin-bottom: 1.5rem;
    }
    
    .pricing {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .tool-card,
    .service-card,
    .pricing-card,
    .feature-card {
        padding: 1rem;
        height: auto;
        min-height: auto;
    }
    
    .tool-card h3,
    .service-card h3,
    .pricing-card h3,
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .tool-card p,
    .service-card p,
    .pricing-card p,
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tool-page {
        padding: 1rem 0;
    }
    
    .tool-header {
        padding: 1.5rem 0;
    }
    
    .tool-header h1 {
        font-size: 1.875rem;
    }
    
    .tool-header p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .stars {
        font-size: 1.125rem;
    }
    
    .rating-text {
        font-size: 0.875rem;
    }
    
    .trending-badge {
        position: static;
        margin: 1rem auto 0;
        display: inline-block;
    }
    
    .tool-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .tool-main {
        padding: 1rem;
    }
    
    .tool-sidebar {
        gap: 1rem;
    }
    
    .tool-info {
        padding: 1rem;
    }
    
    .tool-form {
        padding: 1rem;
    }
    
    .generator-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .generator-form select {
        min-width: auto;
        width: 100%;
    }
    
    .hashtag-result {
        padding: 1rem;
    }
    
    .hashtag-result .hashtag-actions {
        flex-direction: column;
    }
    
    .hashtag-result .hashtag-actions button {
        width: 100%;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-tools {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

/* SEO Content Section - Scrollable */
.seo-content {
    background: #f8fafc;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.seo-content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.seo-content-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.seo-content-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.seo-content-scrollable {
    max-height: 400px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.seo-content-scrollable::-webkit-scrollbar {
    width: 8px;
}

.seo-content-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.seo-content-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.seo-content-scrollable::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

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

.seo-content-wrapper h3:first-child {
    margin-top: 0;
}

.seo-content-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.seo-content-wrapper p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.seo-content-wrapper ul,
.seo-content-wrapper ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.seo-content-wrapper li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.seo-content-wrapper strong {
    color: #111827;
    font-weight: 600;
}

.seo-content-wrapper a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.seo-content-wrapper a:hover {
    text-decoration: underline;
}

.grid { display: grid; }
/* Blog Section */
.blog {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    font-size: 3rem;
    color: #ffffff;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3748;
    line-height: 1.4;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-category {
    font-size: 0.875rem;
    color: #a0aec0;
}

.blog-category {
    background: #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    color: #4a5568;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #5a67d8;
}

.blog-cta {
    text-align: center;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1.125rem;
    }
}

/* Footer - Clean Modern Design */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    text-align: center;
    width: 100%;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

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

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-cta {
    text-align: center;
    padding-top: 1rem;
}

.footer-cta .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.footer-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Bio Generator Specific Styles */
.tool-page {
    padding: 2rem 0;
    min-height: 100vh;
}

.tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.tool-breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.tool-breadcrumb a:hover {
    text-decoration: underline;
}

.tool-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.tool-description {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.tool-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

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

.users {
    color: #718096;
    font-size: 0.9rem;
}

.tool-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tool-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tool-main {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tool-section {
    margin-bottom: 3rem;
}

.tool-section:last-child {
    margin-bottom: 0;
}

.tool-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.tool-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #4a5568;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.tool-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.tool-result h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.bio-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio-display {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
    min-height: 60px;
}

.bio-stats {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

/* Templates Gallery */
.templates-gallery {
    margin-top: 2rem;
}

.template-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.category-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

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

.template-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.template-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.template-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.template-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.template-name {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 1rem;
}

.template-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Tips Section */
.tips-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tips-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 0.5rem;
}

.tip-icon {
    background: #667eea;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.tip-content p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tool-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .templates-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tool-header h1 {
        font-size: 2rem;
    }
    
    .tool-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .template-categories {
        justify-content: center;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .template-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .tool-container {
        padding: 0 0.5rem;
    }
    
    .tool-main,
    .tips-section {
        padding: 1.5rem;
    }
    
    .tool-header h1 {
        font-size: 1.75rem;
    }
    
    .template-categories {
        gap: 0.25rem;
    }
    
    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Tools Categories */
.tools-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.tool-category {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.tool-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.tool-category .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.tool-category .tool-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
    overflow: visible !important;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tool-category .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    border-radius: var(--radius-xl);
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.tool-category .tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.tool-category .tool-card:hover::before {
    opacity: 0.05;
}

/* Fix tool card headers specifically */
.tool-category .tool-card h3,
.tool-category .tool-card h4 {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.tool-category .tool-card p {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    white-space: normal !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fix Popular Tools section specifically */
.popular-tools .tool-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: auto;
    min-height: auto;
    max-height: none;
    display: block;
}

.popular-tools .tool-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    height: auto;
    display: block;
    text-align: center;
}

.popular-tools .tool-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    height: auto;
    display: block;
    text-align: center;
}

.popular-tools .tool-card .btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    display: inline-block;
    height: 44px;
    min-height: 44px;
}

.tool-category .tool-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    height: auto;
    min-height: auto;
    max-height: none;
    display: block;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    flex-grow: 1;
}

.tool-category .tool-card .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    display: inline-block;
    height: 44px;
    min-height: 44px;
    flex-shrink: 0;
    margin-top: 1rem;
}

.tool-page .btn,
.tool-page button,
.tool-page .filter-btn,
.tool-page .category-btn {
    height: auto;
    min-height: 44px;
    line-height: 1.2;
    white-space: normal;
}

.tool-page .tool-main,
.tool-page .tool-section,
.tool-page .tool-info,
.tool-page .tool-form,
.tool-page .tool-result {
    overflow: visible;
}

.tool-page img,
.tool-page canvas,
.tool-page video,
.tool-page svg {
    max-width: 100%;
    height: auto;
}

/* Prevent overlapping when content is long */
.tool-page .template-item,
.tool-page .tool-card,
.tool-page .service-card,
.tool-page .pricing-card,
.tool-page .feature-card {
    height: auto;
    min-height: unset;
}

/* Ensure grids wrap safely inside tool pages */
.tool-page .templates-grid,
.tool-page .tools-grid,
.tool-page .features-grid,
.tool-page .services-grid {
    align-items: stretch;
}

/* Hashtag-specific styles */
.hashtag-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hashtag-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.hashtag-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.hashtag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hashtag-tag {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    user-select: none;
}

.hashtag-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hashtag-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hashtag-tips {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.hashtag-tips h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.hashtag-tips ul {
    list-style: none;
    padding: 0;
}

.hashtag-tips li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.hashtag-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.seo-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.seo-content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.seo-content-wrapper p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.seo-content-wrapper ul,
.seo-content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.seo-content-wrapper li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.seo-content-wrapper strong {
    color: #111827;
    font-weight: 600;
}

.seo-content-wrapper a {
    color: #3b82f6;
    text-decoration: none;
}

.seo-content-wrapper a:hover {
    text-decoration: underline;
}
