/* Clean Energy PowerUp - Retro Style CSS */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f0f 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff9f, #00bcd4, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

h2 {
    font-size: 2.5rem;
    color: #00ff9f;
    text-shadow: 0 0 20px rgba(0, 255, 159, 0.3);
}

h3 {
    font-size: 1.8rem;
    color: #00bcd4;
    text-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

h4 {
    font-size: 1.4rem;
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: #00ff9f;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #00bcd4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 159, 0.5),
                    inset 0 0 20px rgba(0, 255, 159, 0.1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 159, 0.8),
                    inset 0 0 30px rgba(0, 255, 159, 0.2);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Header and Navigation */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ff9f;
    box-shadow: 0 4px 20px rgba(0, 255, 159, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 159, 0.5));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff9f;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    border-color: #00ff9f;
    background: rgba(0, 255, 159, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ff9f;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 159, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 159, 0.03) 100px
        );
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    animation: slideInFromLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #00ff9f, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: slideInFromRight 1s ease-out;
}

.hero-banner {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 159, 0.3));
    animation: neonPulse 2s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #00ff9f, #00bcd4);
    border-color: #00ff9f;
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #00bcd4, #00ff9f);
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-color: #ff6b6b;
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #ff8e53, #ff6b6b);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: #00ff9f;
    color: #00ff9f;
}

.btn-outline:hover {
    background: rgba(0, 255, 159, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.3);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(5px);
}

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

.about-text h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.about-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff9f;
    font-size: 0.8rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 159, 0.05);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 159, 0.1);
    border-color: rgba(0, 255, 159, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff9f;
    text-shadow: 0 0 20px rgba(0, 255, 159, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #00ff9f, #00bcd4, #ff6b6b);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.service-card:hover {
    border-color: rgba(0, 255, 159, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 159, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 159, 0.5));
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #d0d0d0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff9f;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(5px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 188, 212, 0.5);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #d0d0d0;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #00bcd4;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00bcd4;
    filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.3));
}

.author-name {
    color: #00bcd4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-title {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 100px 0;
}

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

.blog-card {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.2);
    transform: translateY(-5px);
}

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.blog-date {
    color: #00ff9f;
}

.blog-category {
    color: #ff6b6b;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(5px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: #00ff9f;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00bcd4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 159, 0.3);
    border-radius: 4px;
    color: #e0e0e0;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff9f;
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00ff9f;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #00bcd4;
    font-size: 1.1rem;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d0d0d0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ff9f;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 255, 159, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: #00ff9f;
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.5);
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 159, 0.2);
    color: #b0b0b0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff6b6b;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid #00ff9f;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #ff6b6b;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ff8e53;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 159, 0.2);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #00bcd4;
}

.cookie-category p {
    margin-top: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you-details {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00bcd4;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thank-you-social {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.thank-you-social h3 {
    color: #00bcd4;
    margin-bottom: 1rem;
}

.thank-you-social p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(0, 255, 159, 0.3);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.contact-details {
    background: rgba(0, 255, 159, 0.05);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 159, 0.2);
}

.cookie-table th {
    background: rgba(0, 255, 159, 0.1);
    color: #00ff9f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table td {
    color: #d0d0d0;
}

.cookie-settings-cta {
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.cookie-settings-cta h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* Blog Pages */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.blog-listing {
    padding: 60px 0;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-time {
    color: #b0b0b0;
}

.blog-newsletter {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: #00ff9f;
}

.newsletter-content p {
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.newsletter-form .form-group-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 159, 0.3);
    border-radius: 4px;
    color: #e0e0e0;
    font-family: 'Space Mono', monospace;
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

/* Article Pages */
.article-page {
    padding: 120px 0 80px;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.article-breadcrumb a {
    color: #00bcd4;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.article-date {
    color: #00ff9f;
}

.article-category {
    color: #ff6b6b;
    text-transform: uppercase;
    font-weight: 600;
}

.article-read-time {
    color: #00bcd4;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.article-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.article-body {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(0, 255, 159, 0.3);
    padding-bottom: 0.5rem;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.article-body li strong {
    color: #00bcd4;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-author,
.article-tags,
.article-share,
.related-articles {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.article-author h3,
.article-tags h3,
.article-share h3,
.related-articles h3 {
    color: #00bcd4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.article-author p {
    color: #d0d0d0;
    margin: 0;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 4px;
    color: #00bcd4;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: #d0d0d0;
    transition: all 0.3s ease;
}

.related-articles a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 2px solid #00ff9f;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 1;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .form-group-inline {
        flex-direction: column;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        margin: 0 10px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero,
    .about,
    .services,
    .testimonials,
    .blog,
    .contact {
        background: #000;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        background: #000;
        border: 2px solid #fff;
    }
    
    .footer {
        background: #000;
        border-top: 2px solid #fff;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .hero-buttons,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        text-shadow: none !important;
    }
    
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        display: none;
    }
}
