/* 
* Auto Select - Main Styles
* Vaporwave/futuristic theme with neon elements
*/

/* ===== Base Styles ===== */
:root {
    /* Main color palette - futuristic/vaporwave theme */
    --primary-color: #ff00ff; /* neon pink */
    --secondary-color: #00e5ff; /* neon cyan */
    --accent-color: #ff9100; /* neon orange */
    --background-dark: #0c0c22; /* deep blue/purple */
    --background-darker: #070716; /* darker blue for contrast */
    --background-gradient: linear-gradient(135deg, #0c0c22 0%, #2a1a5a 100%);
    --text-light: #ffffff;
    --text-muted: #a0a0d0;
    --card-bg: rgba(25, 25, 50, 0.6);
    --card-hover: rgba(35, 35, 70, 0.7);
    --shadow-glow: 0 0 15px rgba(255, 0, 255, 0.5);
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Typography */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-light);
    background: var(--background-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: var(--space-sm) auto 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.neon-text {
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 15px rgba(255, 0, 255, 0.6),
        0 0 20px rgba(255, 0, 255, 0.4);
    color: var(--text-light);
}

/* ===== Buttons ===== */
.btn-primary, .btn-secondary, .btn-outline, .btn-glow, .btn-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #ff40ff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.btn-glow {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.btn-glow:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
    color: var(--text-light);
}

.btn-text {
    padding: 0.5rem 0;
    background: transparent;
    color: var(--secondary-color);
    position: relative;
}

.btn-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary-color);
}

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

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(12, 12, 34, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-light);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(12, 12, 34, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: var(--space-lg);
}

.main-nav a {
    padding: 0.5rem 0;
    position: relative;
    font-weight: 500;
    color: var(--text-light);
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background: var(--background-gradient);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.1), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.1), transparent 40%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* ===== Services Section ===== */
.services {
    padding: var(--space-xxl) 0;
    background-color: var(--background-darker);
    position: relative;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.05), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.05), rgba(0, 229, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    background: var(--card-hover);
}

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

.service-icon {
    margin-bottom: var(--space-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.3));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.5));
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ===== About Us Section ===== */
.about {
    padding: var(--space-xxl) 0;
    background: var(--background-dark);
    position: relative;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.about-image {
    width: 45%;
}

.about-text {
    width: 50%;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-lg);
}

.stat {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: var(--border-light);
    width: 30%;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ===== Testimonials Section ===== */
.testimonials {
    padding: var(--space-xxl) 0;
    background-color: var(--background-darker);
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.05), transparent 40%);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    border: var(--border-light);
    position: relative;
}

.testimonial-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.05), rgba(0, 229, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.testimonial-content:hover:before {
    opacity: 1;
}

.testimonial-icon {
    margin-bottom: var(--space-md);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 500;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-lg);
}

.testimonial-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--space-xs);
}

.testimonial-btn:hover {
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 var(--space-md);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* ===== Blog Preview Section ===== */
.blog-preview {
    padding: var(--space-xxl) 0;
    background: var(--background-dark);
    position: relative;
}

.blog-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: var(--border-light);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    background: var(--card-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-darker);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2));
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

.blog-content {
    padding: var(--space-md);
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.blog-meta {
    margin-bottom: var(--space-sm);
    display: flex;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta span {
    margin-right: var(--space-md);
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-btn-container {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-xxl) 0;
    background-color: var(--background-darker);
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.05), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-info {
    width: 48%;
}

.contact-details {
    margin-top: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: var(--space-md);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-image {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.2));
}

.subscription-form {
    width: 48%;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    border: var(--border-light);
}

.subscription-form h3 {
    margin-bottom: var(--space-sm);
}

.subscription-form p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 0, 255, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    font-weight: normal;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group.checkbox a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: var(--background-darker);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: var(--border-light);
}

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

.footer-logo {
    width: 30%;
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--space-md);
}

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

.footer-links {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Thank You Page ===== */
.thank-you {
    padding: 180px 0 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--background-gradient);
    position: relative;
}

.thank-you:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.1), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.1), transparent 40%);
}

.thank-you-content {
    position: relative;
    z-index: 1;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
    animation: pulse 2s infinite;
}

.thank-you-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ===== Blog Page ===== */
.blog-header {
    padding: 180px 0 60px;
    text-align: center;
    background: var(--background-gradient);
    position: relative;
}

.blog-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.1), transparent 40%);
}

.blog-header h1 {
    margin-bottom: var(--space-sm);
}

.blog-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.blog-articles {
    padding: var(--space-xl) 0 var(--space-xxl);
    background: var(--background-dark);
}

.newsletter-section {
    padding: var(--space-xl) 0;
    background: var(--background-darker);
    position: relative;
}

.newsletter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    margin: var(--space-lg) auto 0;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 50px 0 0 50px;
    border: var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    border-radius: 0 50px 50px 0;
    padding: 0 1.5rem;
    border: none;
}

/* ===== Article Page ===== */
.article-content {
    padding: 150px 0 var(--space-xl);
    background: var(--background-dark);
}

.article-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.2));
}

.article-body h2 {
    color: var(--secondary-color);
    margin-top: var(--space-lg);
}

.article-body h3 {
    color: var(--primary-color);
    margin-top: var(--space-md);
}

.article-tip {
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-tip h3 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: var(--secondary-color);
}

.article-tip h3 i {
    margin-right: 10px;
}

.article-conclusion {
    margin: var(--space-xl) 0;
    padding: var(--space-md);
    background: rgba(255, 0, 255, 0.05);
    border-radius: var(--border-radius);
}

.article-cta {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    text-align: center;
    border: var(--border-light);
}

.article-cta h3 {
    margin-bottom: var(--space-sm);
}

.article-cta p {
    margin-bottom: var(--space-md);
}

.article-share {
    display: flex;
    align-items: center;
    margin: var(--space-xl) 0;
    padding-top: var(--space-md);
    border-top: var(--border-light);
}

.article-share span {
    margin-right: var(--space-md);
    color: var(--text-muted);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin: var(--space-xl) 0;
    padding-top: var(--space-md);
    border-top: var(--border-light);
}

.article-nav-prev, .article-nav-next {
    max-width: 45%;
}

.article-nav-prev a, .article-nav-next a {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.article-nav-prev a:hover, .article-nav-next a:hover {
    color: var(--primary-color);
}

.article-nav-prev a i {
    margin-right: 10px;
}

.article-nav-next a {
    justify-content: flex-end;
}

.article-nav-next a i {
    margin-left: 10px;
}

.related-articles {
    padding: var(--space-xl) 0;
    background: var(--background-darker);
}

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

/* ===== Legal Pages ===== */
.legal-content {
    padding: 150px 0 var(--space-xl);
    background: var(--background-dark);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.legal-header p {
    color: var(--text-muted);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    color: var(--secondary-color);
    margin-top: var(--space-lg);
}

.legal-body h3 {
    color: var(--primary-color);
    margin-top: var(--space-md);
}

.legal-body ul {
    margin-bottom: var(--space-md);
}

.legal-body a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-body a:hover {
    color: var(--primary-color);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 34, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    padding: var(--space-md);
    z-index: 1000;
    border-top: var(--border-light);
    display: none;
}

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

.cookie-content h3 {
    margin-bottom: var(--space-sm);
}

.cookie-content p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-settings {
    max-width: 800px;
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: var(--border-light);
    text-align: left;
}

.cookie-settings h4 {
    margin-bottom: var(--space-md);
}

.cookie-option {
    margin-bottom: var(--space-md);
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

.cookie-option p {
    margin-left: 25px;
    font-size: 0.9rem;
    text-align: left;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .about-image, .about-text, .contact-info, .subscription-form {
        width: 100%;
    }
    
    .about-image {
        margin-bottom: var(--space-lg);
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: var(--space-xl);
    }
    
    .footer-logo, .footer-links {
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: var(--space-lg);
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: var(--space-xl);
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--background-dark);
        z-index: 1001;
        padding: var(--space-xl) var(--space-lg);
        transition: right 0.3s ease;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu li {
        margin-bottom: var(--space-md);
    }
    
    .mobile-menu a {
        font-size: 1.2rem;
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: var(--space-lg);
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        width: 100%;
        margin-bottom: var(--space-md);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: var(--space-sm);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .blog-card {
        padding: var(--space-md);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .article-meta {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .article-navigation {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .article-nav-prev, .article-nav-next {
        max-width: 100%;
    }
}
