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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 2px solid #ff004c;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(255, 0, 76, 0.3);
}

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

.cookie-content p {
    color: #ffffff;
    margin: 0;
}

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

.cookie-buttons button {
    background: linear-gradient(135deg, #ff004c, #ff5e00);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 76, 0.4);
}

.btn-necessary {
    background: linear-gradient(135deg, #333, #555) !important;
}

.btn-settings {
    background: linear-gradient(135deg, #ff5e00, #ff004c) !important;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ff004c;
    max-width: 500px;
    width: 90%;
}

.cookie-modal-content h3 {
    color: #ff004c;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    flex: 1;
    background: linear-gradient(135deg, #ff004c, #ff5e00);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: linear-gradient(135deg, #333, #555) !important;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff004c;
    z-index: 999;
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff004c;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: #ff004c;
    text-shadow: 0 0 10px rgba(255, 0, 76, 0.5);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #ff004c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff004c, #ff5e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 76, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff004c, #ff5e00);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 76, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 76, 0.5);
}

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

.section-alt {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

.section-header svg {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff004c;
    text-shadow: 0 0 20px rgba(255, 0, 76, 0.3);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 94, 0, 0.1));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #ff5e00;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
}

.stat-item p {
    color: #cccccc;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 94, 0, 0.1));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 76, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}

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

.service-card svg {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #ff5e00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #cccccc;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), rgba(255, 0, 76, 0.1));
    border: 2px solid rgba(255, 94, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: #ff5e00;
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.2);
}

.achievement-item h3 {
    color: #ff004c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.achievement-item p {
    color: #cccccc;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 94, 0, 0.1));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #ff004c;
    box-shadow: 0 15px 30px rgba(255, 0, 76, 0.2);
}

.benefit-item h3 {
    color: #ff5e00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #cccccc;
}

/* Q&A Grid */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qa-item {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), rgba(255, 0, 76, 0.1));
    border: 2px solid rgba(255, 94, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.qa-item:hover {
    transform: translateY(-5px);
    border-color: #ff5e00;
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.2);
}

.qa-item h3 {
    color: #ff004c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.qa-item p {
    color: #cccccc;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 94, 0, 0.1));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #ff004c;
    box-shadow: 0 20px 40px rgba(255, 0, 76, 0.2);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: #ff5e00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-content p {
    color: #cccccc;
    margin-bottom: 20px;
}

.read-more {
    color: #ff004c;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ff5e00;
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #ff004c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #cccccc;
}

.social-links h3 {
    color: #ff5e00;
    margin-bottom: 15px;
}

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

.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 94, 0, 0.1));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.contact-form h3 {
    color: #ff5e00;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff004c, #ff5e00);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 76, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    border-top: 2px solid #ff004c;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #ff004c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff5e00;
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 0, 76, 0.3);
    color: #cccccc;
}

/* Animations */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Article Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-date, .article-category {
    color: #ff5e00;
    font-weight: 500;
    padding: 5px 15px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: 20px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #ff004c;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 76, 0.3);
}

.article-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    padding: 60px 0;
}

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

.article-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 0, 76, 0.3);
}

.article-body h2 {
    color: #ff004c;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    text-shadow: 0 0 15px rgba(255, 0, 76, 0.3);
}

.article-body h3 {
    color: #ff5e00;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-body p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    color: #cccccc;
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 0, 76, 0.3);
}

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

.tag {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.2), rgba(255, 94, 0, 0.2));
    color: #ff5e00;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 94, 0, 0.3);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.back-to-home, .back-to-blog {
    color: #ff004c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid rgba(255, 0, 76, 0.3);
    border-radius: 5px;
}

.back-to-home:hover, .back-to-blog:hover {
    color: #ff5e00;
    border-color: #ff5e00;
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
}

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

.legal-content h1 {
    color: #ff004c;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 0, 76, 0.3);
}

.legal-content h2 {
    color: #ff5e00;
    font-size: 1.6rem;
    margin: 30px 0 15px;
}

.legal-content h3 {
    color: #ff004c;
    font-size: 1.3rem;
    margin: 25px 0 10px;
}

.legal-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul, .legal-content ol {
    color: #cccccc;
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.last-updated {
    text-align: center;
    color: #ff5e00;
    font-style: italic;
    margin-bottom: 40px;
}

/* Thanks Page Styles */
.thanks-page {
    padding: 120px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content svg {
    margin-bottom: 30px;
}

.thanks-content h1 {
    color: #ff004c;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 76, 0.3);
}

.thanks-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.thanks-actions a {
    background: linear-gradient(135deg, #ff004c, #ff5e00);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.thanks-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 76, 0.4);
}

.thanks-actions a.secondary {
    background: linear-gradient(135deg, #333, #555);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        border-top: 2px solid #ff004c;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .achievements-grid,
    .benefits-grid,
    .qa-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .service-card,
    .achievement-item,
    .benefit-item,
    .qa-item {
        padding: 25px 20px;
    }
    .legal-content {
    word-break: break-word;}
}