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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e6ed;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #e0e6ed;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #64ffda;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64ffda, #00bcd4);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e6ed;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(ellipse at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b8c6db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    color: #0a0e27;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
}

.cta-button.secondary:hover {
    background: #64ffda;
    color: #0a0e27;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(100, 255, 218, 0.2));
}

/* Stars Animation */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #64ffda;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stars::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Section */
.services {
    position: relative;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.service-card p {
    color: #b8c6db;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 100%);
}

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

.about-text ul {
    list-style: none;
    margin-top: 2rem;
}

.about-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #b8c6db;
}

.about-text li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(100, 255, 218, 0.2));
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, transparent 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #b8c6db;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.testimonial-card span {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
}

.newsletter h2,
.newsletter p {
    text-align: center;
}

.newsletter p {
    font-size: 1.1rem;
    color: #b8c6db;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #e0e6ed;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #8892b0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    color: #0a0e27;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, transparent 100%);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-info img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
    flex-shrink: 0;
}

.contact-details h3 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-details p {
    color: #b8c6db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details strong {
    color: #e0e6ed;
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #b8c6db;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #b8c6db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a.active {
    color: #64ffda;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

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

.social-links a {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: #64ffda;
    background: rgba(100, 255, 218, 0.1);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #8892b0;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #b8c6db;
    margin: 0;
    flex: 1;
}

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

.btn-secondary {
    background: transparent;
    color: #64ffda;
    border: 1px solid #64ffda;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #64ffda;
    color: #0a0e27;
}

.btn-tertiary {
    background: transparent;
    color: #8892b0;
    border: 1px solid #8892b0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    color: #e0e6ed;
    border-color: #e0e6ed;
}

/* Page Headers */
.page-header,
.legal-header,
.article-header {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header h1,
.legal-header h1,
.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p,
.legal-header p {
    font-size: 1.2rem;
    color: #b8c6db;
}

/* Blog Styles */
.blog-section {
    padding: 4rem 0;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    background: none;
    -webkit-text-fill-color: inherit;
    color: #e0e6ed;
}

.blog-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #64ffda;
}

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

.read-more {
    color: #64ffda;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00bcd4;
}

/* Article Styles */
.breadcrumb {
    margin-bottom: 2rem;
    color: #8892b0;
}

.breadcrumb a {
    color: #64ffda;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #00bcd4;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.article-date,
.article-author {
    color: #8892b0;
    font-size: 0.9rem;
}

.article-content {
    padding: 4rem 0;
}

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

.article-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 15px;
    filter: drop-shadow(0 15px 30px rgba(100, 255, 218, 0.2));
}

.article-body h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    text-align: left;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #64ffda;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #b8c6db;
}

.article-body .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e6ed;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.05);
    border-left: 4px solid #64ffda;
    border-radius: 0 10px 10px 0;
}

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

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

.article-body strong {
    color: #e0e6ed;
    font-weight: 600;
}

.article-body a {
    color: #64ffda;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #00bcd4;
    border-bottom-color: #00bcd4;
}

.article-cta {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h3 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
}

/* Related Articles */
.related-articles {
    background: rgba(100, 255, 218, 0.02);
    padding: 4rem 0;
}

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

.related-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.related-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.related-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.related-card a {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card a:hover {
    color: #64ffda;
}

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

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #64ffda 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: #b8c6db;
    line-height: 1.6;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-articles {
    padding: 4rem 0;
    background: rgba(100, 255, 218, 0.02);
}

.featured-articles h2 {
    margin-bottom: 1rem;
}

.featured-articles > p {
    text-align: center;
    color: #b8c6db;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.article-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e0e6ed;
}

.article-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card h3 a:hover {
    color: #64ffda;
}

.article-card p {
    color: #b8c6db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #b8c6db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info-brief {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    color: #b8c6db;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #64ffda;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    text-align: left;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #64ffda;
}

.legal-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #b8c6db;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: #b8c6db;
    line-height: 1.6;
}

.legal-text strong {
    color: #e0e6ed;
    font-weight: 600;
}

.legal-text a {
    color: #64ffda;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    color: #00bcd4;
    border-bottom-color: #00bcd4;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.last-updated em {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-table th {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    font-weight: 600;
}

.cookies-table td {
    color: #b8c6db;
}

.cookie-settings-panel {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cookie-settings-panel h3 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.cookie-settings-panel p {
    margin-bottom: 1.5rem;
}

/* About Page Specific */
.company-story {
    padding: 4rem 0;
}

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

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #64ffda 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text h3 {
    color: #64ffda;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.story-text p {
    color: #b8c6db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.values-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: #b8c6db;
    line-height: 1.6;
}

.values-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 0.8rem;
}

.services-overview {
    background: rgba(100, 255, 218, 0.02);
    padding: 4rem 0;
}

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

.specialization-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.specialization-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(100, 255, 218, 0.3));
}

.specialization-card h3 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.specialization-card p {
    color: #b8c6db;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
}

.team-intro {
    text-align: center;
    color: #b8c6db;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: #b8c6db;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-info-brief {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header h1,
    .legal-header h1,
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1,
    .legal-header h1,
    .article-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .specialization-card {
        padding: 1.5rem;
    }
    
    .newsletter-form input,
    .btn-primary {
        padding: 0.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeInUp 1s ease-out;
}

.service-card,
.testimonial-card,
.blog-card {
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 14, 39, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00bcd4 0%, #64ffda 100%);
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #64ffda;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .services,
    .about-section,
    .testimonials,
    .newsletter,
    .contact {
        page-break-inside: avoid;
    }
}
