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

:root {
    --primary-color: #0099cc;
    --secondary-color: #0077aa;
    --dark-bg: #ffffff;
    --light-bg: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}



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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 153, 204, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

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

.annotation {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.annotation-1 {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.annotation-2 {
    top: 20%;
    left: 60%;
    animation-delay: 1s;
}

.annotation-3 {
    top: 65%;
    left: 50%;
    animation-delay: 2s;
}

.annotation-4 {
    top: 70%;
    left: 70%;
    animation-delay: 1.5s;
}

.annotation-5 {
    top: 80%;
    left: 55%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.content-section.alternate {
    background-color: var(--light-bg);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Section with Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.section-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-with-image.reverse .image-content {
    order: -1;
}

.text-content {
    color: var(--text-light);
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.text-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.text-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.section-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

picture {
    display: block;
    width: 100%;
}

.image-content {
    position: relative;
}

/* Practices Grid */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.practice-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 153, 204, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.practice-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.practice-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.warning-box p {
    color: #856404;
    margin: 0;
    font-size: 1.05rem;
}

/* Rights List */
.rights-list {
    margin: 2rem 0;
}

.right-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.right-item h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.right-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.emphasis-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-text {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Steps List */
.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 153, 204, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.cta-text.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    margin-top: 2rem;
}

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Contacts Section */
.contacts-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.contact-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 153, 204, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 153, 204, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 153, 204, 0.3);
    border-radius: 5px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.2);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

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

.blog-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0, 153, 204, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2);
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    min-height: calc(100vh - 200px);
}

.article-header {
    margin-bottom: 3rem;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.article-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
}

.article-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.article-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-box {
    background-color: var(--card-bg);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-size: 1.4rem;
}

.highlight-box .benefits-list {
    margin: 1.5rem 0;
}

.highlight-box .benefits-list li {
    margin-bottom: 0.8rem;
}

.call-to-action {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.call-to-action strong {
    color: white;
}

.call-to-action a {
    color: white;
    text-decoration: underline;
}

/* Violations List */
.violations-list {
    margin: 2rem 0;
}

.violation-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.violation-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.violation-content h3 {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.violation-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Action Plan */
.action-plan {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.faq-item strong {
    color: var(--text-dark);
}

/* Help Section */
.help-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Numbered List */
.numbered-list {
    list-style: decimal;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.numbered-list li {
    padding: 0.8rem 0;
    line-height: 1.7;
    color: var(--text-light);
}

.numbered-list strong {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .contacts-grid,
    .blog-grid,
    .practices-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* .section-with-image {
        grid-template-columns: 1fr;
    }

    .section-with-image.reverse .image-content {
        order: 0;
    }

    .section-image {
        margin-top: 2rem;
    } */
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    border-top: 2px solid var(--primary-color);
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.cookie-btn-decline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-btn-settings {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid rgba(0, 153, 204, 0.3);
}

.cookie-btn-settings:hover {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    background-color: var(--card-bg);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.cookie-modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.cookie-modal-header p {
    color: var(--text-light);
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-bg);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category-title {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cookie-category-title h3 {
    color: var(--text-dark);
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
}

.cookie-category-title p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    margin-left: 1rem;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--light-bg);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-modal-footer .cookie-btn {
    min-width: 120px;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal.show {
        padding: 1rem;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

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

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

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-content {
        font-size: 1rem;
    }
}


/* --- Mobile Optimization --- */
@media (max-width: 768px) {

    /* Подреждане на елементите вертикално */
    .section-with-image {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    /* Дори при reverse — на мобилен винаги текст над снимка */
    .section-with-image.reverse {
        flex-direction: column !important;
    }

    /* Текстов блок — 100% */
    .section-with-image .text-content {
        width: 100%;
    }

    /* Снимки — пълна ширина, без да излизат */
    .section-with-image .image-content {
        width: 100%;
    }

    .section-with-image .image-content img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Контейнерът да не прави странични отстояния прекалено малки */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* --- Compact Contacts Layout --- */
.contacts-section {
    padding: 60px 0 !important; /* по-малко от 100px */
}

.section-title {
    margin-bottom: 1.5rem !important; /* вместо 3rem */
}

.contacts-grid {
    margin-bottom: 1.5rem !important; /* по-близо до формата */
}

.contact-card {
    padding: 1.5rem !important; /* вместо 2rem */
}

.contact-form {
    margin-top: 1rem !important; /* свалям огромния отстъп */
    padding: 1.5rem !important; /* малко по-компактно */
}