/* ====================
   General Styles
==================== */
:root {
    /* Main Colors */
    --primary-color: #00ffcc;
    --secondary-color: #ff00ff;
    --accent-color: #9933ff;
    --background-dark: #0a0a1e;
    --background-light: #141428;
    --text-color: #ffffff;
    --text-secondary: #b8b8d4;
    --success-color: #4cd964;
    --error-color: #ff3b30;
    --warning-color: #ffcc00;
    
    /* Gradients */
    --primary-gradient: linear-gradient(45deg, #00ffcc, #33ccff);
    --secondary-gradient: linear-gradient(45deg, #ff00ff, #ff3366);
    --dark-gradient: linear-gradient(to right, #0a0a1e, #1a1a3a);
    
    /* Shadows */
    --neon-shadow-primary: 0 0 10px rgba(0, 255, 204, 0.7), 0 0 20px rgba(0, 255, 204, 0.5), 0 0 30px rgba(0, 255, 204, 0.3);
    --neon-shadow-secondary: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Sizes */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--background-dark);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: var(--box-shadow);
    border: none;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 255, 204, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    border: 2px solid var(--primary-color);
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    transform: translateY(-3px);
}

/* Text Effects */
.neon-text {
    color: var(--primary-color);
    text-shadow: var(--neon-shadow-primary);
}

.glow-text {
    color: var(--text-color);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ====================
   Header & Navigation
==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
    height: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--neon-shadow-primary);
}

.navigation ul {
    display: flex;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    padding: 5px 3px;
}

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

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

.navigation a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ====================
   Hero Section
==================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    background-color: var(--background-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    animation: float 6s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* ====================
   About Section
==================== */
.about {
    background-color: var(--background-light);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 450px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--dark-gradient);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    margin: 0 10px;
    transition: transform var(--transition-normal);
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: var(--neon-shadow-primary);
}

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

/* ====================
   Services Section
==================== */
.services {
    background-color: var(--background-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-15px);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

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

.service-link:hover::after {
    width: 100%;
}

/* ====================
   Blog Section
==================== */
.blog {
    background-color: var(--background-light);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

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

.blog-link:hover::after {
    width: 100%;
}

.blog-button {
    text-align: center;
    margin-top: 40px;
}

/* ====================
   Testimonials Section
==================== */
.testimonials {
    background-color: var(--background-dark);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    height: 300px;
}

.testimonial-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

/* ====================
   Contact Section
==================== */
.contact {
    background-color: var(--background-light);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.contact-info h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item p {
    margin-bottom: 0;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-gradient);
    border-radius: 50%;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.social-media a:hover {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: var(--background-dark);
}

.subscription-form {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.subscription-form h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.subscription-form p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

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

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

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group.checkbox a {
    color: var(--primary-color);
}

.subscription-form button {
    width: 100%;
    margin-top: 10px;
}

/* ====================
   Footer
==================== */
.footer {
    background-color: var(--background-dark);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-column {
    flex: 1;
    min-width: 160px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--dark-gradient);
    border-radius: 50%;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: var(--background-dark);
}

/* ====================
   Cookie Consent
==================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition-slow);
    max-width: 500px;
    margin: 0 auto;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cookie-customize {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-top: 15px;
    display: none;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

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

/* ====================
   Thanks Page
==================== */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
}

.thanks-info p {
    margin-bottom: 10px;
    font-weight: 600;
}

.thanks-info ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-secondary);
}

.thanks-info ul li {
    margin-bottom: 8px;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neon-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    animation: pulse 6s ease-in-out infinite;
}

.circle-2 {
    top: 50%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    animation: pulse 8s ease-in-out infinite;
}

.circle-3 {
    bottom: 15%;
    left: 30%;
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    animation: pulse 10s ease-in-out infinite;
}

/* ====================
   Blog Page
==================== */
.blog-header {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    background-color: var(--background-dark);
}

.blog-header h1 {
    margin-bottom: 15px;
}

.blog-header p {
    max-width: 600px;
    margin: 0 auto;
}

.blog-header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.blog-articles {
    background-color: var(--background-light);
    padding: 80px 0;
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.blog-category {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--background-dark);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.blog-category.active, .blog-category:hover {
    background: var(--primary-gradient);
    color: var(--background-dark);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-item {
    display: flex;
    background: var(--background-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-item-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item-content {
    flex: 2;
    padding: 30px;
}

.blog-item-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-item-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-item-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-item-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-item-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-dark);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.pagination-item.active, .pagination-item:hover {
    background: var(--primary-gradient);
    color: var(--background-dark);
}

.newsletter {
    background-color: var(--background-dark);
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    margin-bottom: 15px;
}

.newsletter-text p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ====================
   Article Content
==================== */
.article-content {
    padding: 150px 0 80px;
    background-color: var(--background-light);
}

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

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
}

.article-date, .article-author {
    color: var(--text-secondary);
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.article-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-body ul li, .article-body ol li {
    margin-bottom: 10px;
    position: relative;
}

.article-body ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

.article-tip, .article-quote {
    margin: 30px 0;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 255, 204, 0.1);
    border-left: 4px solid var(--primary-color);
}

.article-tip {
    display: flex;
}

.tip-icon {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tip-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.article-quote {
    font-style: italic;
    color: var(--text-color);
    text-align: center;
    font-size: 1.2rem;
}

.article-quote p {
    margin-bottom: 0;
}

.article-cta {
    margin: 40px 0;
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--dark-gradient);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.article-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-share span {
    color: var(--text-secondary);
}

.article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--dark-gradient);
    border-radius: 50%;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.article-share a:hover {
    transform: translateY(-3px);
    background: var(--primary-gradient);
    color: var(--background-dark);
}

.article-related {
    margin-top: 60px;
}

.article-related h3 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-article {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal);
}

.related-article:hover {
    transform: translateY(-10px);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h4 {
    padding: 15px 15px 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-article a {
    display: block;
    padding: 0 15px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-header, .comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--primary-gradient);
}

.comparison-header .comparison-cell {
    color: var(--background-dark);
    font-weight: 700;
}

.comparison-row {
    background: var(--background-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.comparison-row.total {
    background: rgba(0, 255, 204, 0.1);
}

.comparison-row.total .comparison-cell {
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 12px 15px;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
}

/* ====================
   Legal Pages
==================== */
.legal-content {
    padding: 150px 0 80px;
    background-color: var(--background-light);
}

.legal-header {
    margin-bottom: 40px;
    text-align: center;
}

.legal-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-date {
    color: var(--text-secondary);
    font-style: italic;
}

.legal-body {
    line-height: 1.8;
}

.legal-body h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-body p {
    margin-bottom: 15px;
}

.legal-body ul, .legal-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-body ul li, .legal-body ol li {
    margin-bottom: 10px;
    position: relative;
}

.legal-body ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

.legal-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ====================
   Responsive Styles
==================== */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1 0 40%;
        margin-bottom: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .navigation {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left var(--transition-normal);
        z-index: 999;
    }
    
    .navigation.active {
        left: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .navigation li {
        margin: 15px 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .blog-item {
        flex-direction: column;
    }
    
    .blog-item-image {
        max-width: 100%;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-tags {
        justify-content: center;
    }
    
    .article-share {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        flex: 1 0 100%;
    }
    
    .thanks-content {
        padding: 30px 20px;
    }
    
    .thanks-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-category {
        width: 100%;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
}
