/* QRFlow - Modern QR Code Generator CSS */

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

:root {
    /* Color Palette */
    --primary-color: #667eea;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary-color: #06b6d4;
    --secondary-light: #22d3ee;
    --accent-green: #10b981;
    --accent-green-light: #34d399;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    
    /* Background colors */
    --bg-glass: rgba(255, 255, 255, 0.25);
    --bg-card: rgba(255, 255, 255, 0.15);
    --bg-input: rgba(255, 255, 255, 0.1);
    
    /* Text colors */
    --text-white: rgba(255, 255, 255, 0.95);
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 10px 15px rgba(102, 126, 234, 0.15);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --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;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Animated background elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--secondary-light);
    top: 70%;
    left: 80%;
    animation-delay: 1s;
}

.floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--accent-purple-light);
    top: 30%;
    left: 85%;
    animation-delay: 2s;
}

.floating-shape.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--accent-green-light);
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.logo-img {
    height: 6vw;
    max-height: 48px;
    min-height: 28px;
    width: auto;
}

.logo-text {
    font-size: 2.2vw;
    max-font-size: 1.8rem;
    color: #1f2937;
    margin: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

@media (max-width: 640px) {
    .logo-img {
        height: 8vw;
    }
    .logo-text {
        font-size: 4.5vw;
    }
}

/* Main content */
.main {
    padding: var(--space-8) 0;
    position: relative;
    z-index: 1;
}

/* Hero section */
.hero-section {
    text-align: center;
    margin-bottom: var(--space-8);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Type section */
.type-section {
    margin-bottom: var(--space-8);
}

/* Tabs container with navigation arrows */
.tabs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    max-width: 100%;
}

.tabs-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.tab-group {
    display: none;
    transition: transform var(--transition-normal);
}

.tab-group.active {
    display: block;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: scale(1.05);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.type-tabs {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.type-tab {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-light);
    font-weight: 500;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

.type-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: translateY(-2px);
}

.type-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.tab-icon {
    font-size: var(--font-size-lg);
}

/* Generator section */
.generator-section {
    margin-bottom: var(--space-8);
}

.generator-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    justify-content: center;
}

.input-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.input-container {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-4);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

label {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.text-input, .select-input, .text-area {
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
}

.text-input:focus, .select-input:focus, .text-area:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.text-area {
    resize: vertical;
    min-height: 100px;
}

.button-container {
    display: flex;
    justify-content: center;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-8);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-colored);
}

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

.primary-button:active {
    transform: translateY(0);
}

.qr-section {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-4);
}

.qr-actions {
    display: flex;
    gap: var(--space-4);
}

.action-button {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    color: var(--text-light);
    font-weight: 500;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
}

.action-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: var(--font-size-lg);
}

/* Examples section */
.examples-section {
    margin-bottom: var(--space-8);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--text-white);
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-4);
}

.example-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.example-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.2);
}

.example-icon {
    font-size: var(--font-size-2xl);
    background: var(--bg-glass);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.example-content {
    flex: 1;
}

.example-title {
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.example-value {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .generator-container {
        flex-direction: column;
        align-items: center;
    }
    
    .input-section, .qr-section {
        max-width: 100%;
    }
    
    .type-tab {
        padding: var(--space-2) var(--space-3);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .type-tabs {
        padding: var(--space-2);
    }
    
    .type-tab {
        padding: var(--space-2) var(--space-2);
        font-size: calc(var(--font-size-sm) - 1px);
    }
    
    .tab-icon {
        font-size: var(--font-size-base);
    }
}
/* Dark mode styles */
    .dark-mode-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .dark-mode-toggle:hover {
        transform: scale(1.1);
    }
    
    .dark-mode {
        background: linear-gradient(135deg, #1a1c2c 0%, #4a2b5a 100%);
    }
    
    .dark-mode .background-elements .floating-shape {
        opacity: 0.05;
    }
    
    .dark-mode .header {
        background: rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .generator-card {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .type-tabs {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .type-tab.active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .dark-mode .text-input {
        background: rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .dark-mode .text-input:focus {
        border-color: var(--primary-color);
        background: rgba(0, 0, 0, 0.3);
    }
    
    .dark-mode .qr-display {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .download-button, 
    .dark-mode .copy-button {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dark-mode .examples-section {
        background: rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .example-item {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dark-mode .example-item:hover {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .dark-mode .dark-mode-toggle {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Header */
.header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1vw; /* ekran genişliğine göre boşluk */
}

.logo-img {
  height: 6vw;         /* logo yüksekliği ekran genişliğinin %6’sı kadar */
  max-height: 48px;    /* çok büyümesini engellemek için tavan değer */
  min-height: 28px;    /* çok küçülmesini engellemek için taban değer */
  width: auto;         /* orantılı genişlik */
}

.logo-text {
  font-size: 2.2vw;    /* ekran genişliğine göre font büyüklüğü */
  max-font-size: 1.8rem;
  color: #1f2937;
  margin: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}
@media (max-width: 640px) {
    .header .container {
        flex-direction: column;
        align-items: center;    /* ortala */
    }
  .logo-img {
    height: 8vw;       /* mobilde biraz daha büyük görünsün */
  }
  .logo-text {
    font-size: 4.5vw;
  }
}

.main-nav {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: var(--space-6);
    list-style: none;
    
}

.nav-link {
    color: var(--text-light);
     width: auto;  
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    padding: var(--space-2) 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}


.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}


/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8) 0 var(--space-4);
    margin-top: var(--space-8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    gap: var(--space-8);
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: var(--space-2);
}

.footer-links-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-links-list a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
}

/* Dark Mode Styles for New Elements */
.dark-mode .tip-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .tip-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .footer {
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for New Elements */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shape {
        display: none !important;
    }
}
    
/* Security Box */
.security-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    display: flex;
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
}

.security-icon {
    flex-shrink: 0;
    color: var(--accent-green);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: var(--space-1);
}

.security-content {
    flex-grow: 1;
}

.security-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-3);
}

.security-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.security-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.security-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.security-list li strong {
    color: var(--text-white);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-8) 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    padding: var(--space-4) var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.faq-toggle {
    color: var(--text-light);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-6) var(--space-4);
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Blog Preview Section */
.blog-preview-section {
    padding: var(--space-8) 0;
}

.blog-preview-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.blog-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.blog-preview-content {
    margin-bottom: var(--space-4);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: var(--font-size-base);
    margin: 0;
}

.blog-full-content {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
}

.blog-preview-box.expanded .blog-full-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: var(--space-4);
}

.blog-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.blog-toggle-button {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    border: none;
    color: var(--primary-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-normal);
}

.blog-toggle-button:hover {
    color: var(--primary-color);
}

.blog-toggle-icon {
    transition: transform var(--transition-normal);
}

.blog-preview-box.expanded .blog-toggle-icon {
    transform: rotate(180deg);
}

.blog-preview-box.expanded .read-more-text {
    display: none;
}

.blog-preview-box.expanded .blog-toggle-button:before {
    content: "Show less";
}

.blog-link {
    color: var(--accent-green);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition-normal);
    display: none;
}

.blog-preview-box.expanded .blog-link {
    display: inline-block;
}

.blog-link:hover {
    color: var(--accent-green-light);
    text-decoration: underline;
}

/* Dark mode adjustments */
.dark-mode .security-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .faq-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .blog-preview-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .security-box {
        flex-direction: column;
        padding: var(--space-4);
    }
    
    .security-icon {
        margin-bottom: var(--space-2);
    }
    
    .faq-question {
        padding: var(--space-3) var(--space-4);
    }
    
    .faq-answer {
        padding: 0 var(--space-4);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--space-4) var(--space-3);
    }
    
    .blog-preview-box {
        padding: var(--space-4);
    }
    
    .blog-title {
        font-size: var(--font-size-lg);
    }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8) 0 var(--space-4);
    margin-top: var(--space-8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    gap: var(--space-8);
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: var(--space-2);
}

.footer-links-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-links-list a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.social-link:hover {
    color: var(--text-white);
}