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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

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

.section {
    padding: 80px 0;
}

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

h1 {
    font-size: 3rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #e375ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffdd75;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    color: #1a1a1a;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d162e6, #f5c962);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 117, 255, 0.3);
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    color: #e375ff;
    border: 2px solid #e375ff;
}

.btn-outline:hover {
    background: #e375ff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 117, 255, 0.4);
}

.btn-secondary {
    background: #333333;
    color: #e0e0e0;
    border: 2px solid #555555;
}

.btn-secondary:hover {
    background: #444444;
    color: #ffffff;
    border-color: #666666;
}

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

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

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

.cookie-text h3 {
    color: #e375ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #2a2a2a;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #e375ff;
}

.cookie-modal-header {
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h2 {
    color: #e375ff;
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #e375ff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #ffdd75;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-toggle label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 24px;
    background: #555555;
    border-radius: 12px;
    margin-right: 12px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: #e375ff;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 0 20px 20px;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(227, 117, 255, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo a:hover {
    color: #e375ff;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #e375ff;
    background: rgba(227, 117, 255, 0.1);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #e375ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* About Section */
.about {
    background: #222222;
}

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

.about-content h3 {
    color: #e375ff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

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

.feature-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #e375ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 117, 255, 0.2);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #e375ff;
    margin-bottom: 0.5rem;
}

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

.service-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #e375ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 117, 255, 0.2);
}

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

.service-card h3 {
    color: #e375ff;
    margin-bottom: 1rem;
}

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

/* Achievements Section */
.achievements {
    background: #222222;
}

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

.achievement-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-card:hover {
    border-color: #ffdd75;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 221, 117, 0.2);
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e375ff;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #b0b0b0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    border-color: #e375ff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(227, 117, 255, 0.2);
}

.offer-card.featured {
    border-color: #ffdd75;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a3a 100%);
}

.offer-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #333333;
}

.offer-header h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.offer-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e375ff;
}

.offer-price .period {
    color: #b0b0b0;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.offer-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.75rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 2rem;
}

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

.offer-card .btn {
    width: 100%;
}

/* Reviews Section */
.reviews {
    background: #222222;
}

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

.review-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    border-color: #e375ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 117, 255, 0.2);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

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

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.blog-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    border-color: #e375ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 117, 255, 0.2);
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-category {
    background: #e375ff;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.blog-date {
    color: #b0b0b0;
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #e375ff;
}

.blog-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #e375ff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffdd75;
}

/* Contact Section */
.contact {
    background: #222222;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    padding: 12px;
    background: rgba(227, 117, 255, 0.1);
    border-radius: 8px;
    border: 2px solid #e375ff;
}

.contact-details h3 {
    color: #e375ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: #e0e0e0;
}

.contact-details a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e375ff;
}

.contact-form {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(227, 117, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e375ff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #555555;
    border-radius: 8px;
    background: #333333;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e375ff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 2px solid #e375ff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo a:hover {
    color: #e375ff;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(227, 117, 255, 0.1);
    border-radius: 8px;
    border: 2px solid #e375ff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e375ff;
    transform: translateY(-2px);
}

.social-links a:hover svg {
    stroke: #1a1a1a;
}

.footer-section h3 {
    color: #e375ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e375ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #888888;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid #e375ff;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 60px 0;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

/* Article Pages */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
}

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

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

.breadcrumb span {
    margin: 0 0.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.article-category {
    background: #e375ff;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.article-date, .reading-time {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.article-image {
    max-width: 800px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
}

.article-body {
    max-width: none;
}

.article-body .lead {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-body h2 {
    color: #e375ff;
    margin: 3rem 0 1.5rem;
    border-left: 4px solid #e375ff;
    padding-left: 1rem;
}

.article-body h3 {
    color: #ffdd75;
    margin: 2rem 0 1rem;
}

.highlight-box, .alert-box, .quote-box, .cta-box {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #e375ff;
}

.highlight-box svg, .alert-box svg, .quote-box svg {
    margin-bottom: 1rem;
}

.alert-box {
    border-left-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.quote-box {
    border-left-color: #ffdd75;
    position: relative;
}

.quote-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.quote-box cite {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-style: normal;
}

.cta-box {
    background: linear-gradient(135deg, #2a2a2a, #3a2a3a);
    text-align: center;
    border: 2px solid #e375ff;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.two-column-list .column h4 {
    color: #e375ff;
    margin-bottom: 1rem;
}

.step-by-step {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffdd75;
    margin-bottom: 0.5rem;
}

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

.checklist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #333333;
    border-radius: 8px;
    align-items: flex-start;
}

.checklist {
    margin: 2rem 0;
}

.checklist .checklist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
    align-items: center;
}

.code-example {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #333333;
}

.code-example h4 {
    color: #e375ff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.code-example pre {
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    color: #ffdd75;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-info, .related-articles, .share-article, .security-tips {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid rgba(227, 117, 255, 0.2);
}

.author-info {
    text-align: center;
}

.author-avatar {
    margin-bottom: 1rem;
}

.author-info h4 {
    color: #e375ff;
    margin-bottom: 1rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: block;
    padding: 1rem;
    background: #333333;
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: background 0.3s ease;
}

.related-item:hover {
    background: #444444;
    color: #e375ff;
}

.related-item h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.related-date {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #333333;
    border-radius: 6px;
    color: #e0e0e0;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    background: #e375ff;
    color: #1a1a1a;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.tip-item span {
    line-height: 1.4;
}

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

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

.legal-content h1 {
    color: #e375ff;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: #ffdd75;
    margin: 2.5rem 0 1rem;
    border-left: 4px solid #ffdd75;
    padding-left: 1rem;
}

.legal-content h3 {
    color: #e375ff;
    margin: 2rem 0 1rem;
}

.cookie-management {
    text-align: center;
    margin: 2rem 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.thank-you-details {
    margin: 3rem 0;
}

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

.step-item {
    text-align: left;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    border: 2px solid rgba(227, 117, 255, 0.2);
}

.step-item .step-icon {
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #e375ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-summary {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
    border: 2px solid #ffdd75;
}

.form-summary h3 {
    color: #ffdd75;
    margin-bottom: 1rem;
}

.summary-content p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.contact-options {
    margin: 3rem 0;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    border: 2px solid rgba(227, 117, 255, 0.2);
}

.contact-card .contact-icon {
    flex-shrink: 0;
    padding: 12px;
    background: rgba(227, 117, 255, 0.1);
    border-radius: 8px;
    border: 2px solid #e375ff;
}

.contact-info h4 {
    color: #e375ff;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Form Error Styling */
.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Additional Blog Content Styles */
.training-topics, .budget-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.topic-card, .budget-tier {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(227, 117, 255, 0.2);
}

.topic-card h4, .budget-tier h4 {
    color: #e375ff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-checklist, .network-security, .incident-response {
    margin: 2rem 0;
}

.security-layer {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #e375ff;
}

.security-layer h4 {
    color: #ffdd75;
    margin-bottom: 1rem;
}

.backup-strategy {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #ffdd75;
}

.backup-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.backup-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.backup-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e375ff, #ffdd75);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.backup-arrow {
    font-size: 2rem;
    color: #e375ff;
    font-weight: bold;
}

.response-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.phase {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.phase-number {
    width: 40px;
    height: 40px;
    background: #e375ff;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.phase h4 {
    color: #ffdd75;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .next-steps, .contact-cards {
        grid-template-columns: 1fr;
    }

    .backup-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .backup-arrow {
        transform: rotate(90deg);
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .training-topics, .budget-solutions {
        grid-template-columns: 1fr;
    }

    .response-phases {
        grid-template-columns: 1fr;
    }
}

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .service-card,
    .achievement-card,
    .offer-card,
    .review-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .checklist-item, .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .article-body .lead {
        font-size: 1.1rem;
    }
    body {
        word-break: break-word;
    }
}