:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-green: #4CAF50;
    --primary-blue: #2196F3;
    --primary-orange: #FF9800;
    --primary-purple: #9C27B0;
    --primary-teal: #009688;
    
    /* Light Shades */
    --light-green: #E8F5E8;
    --light-blue: #E3F2FD;
    --light-orange: #FFF3E0;
    --light-purple: #F3E5F5;
    --light-teal: #E0F2F1;
    
    /* Dark Shades */
    --dark-green: #2E7D32;
    --dark-blue: #1565C0;
    --dark-orange: #E65100;
    --dark-purple: #6A1B9A;
    --dark-teal: #00695C;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --element-margin: 2rem;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: #333;
    overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-shapes {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shapes::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 150px;
    height: 150px;
    background: var(--primary-purple);
    border-radius: 50%;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 2.5rem;
}

.h2 {
    font-size: 2rem;
}

.h5 {
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .price {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

/* Price Cards */
.price-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-card.border-primary {
    border-width: 2px;
}

/* Team Members */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Review Cards */
.review-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: var(--font-size-base);
}

/* Footer */
#footer {
    background: #2c3e50;
    color: #ecf0f1;
}

#footer h5, #footer h6 {
    color: white;
}

#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-green);
}

/* Breadcrumbs */
.breadcrumbs {
    padding-top: 100px;
}

.breadcrumb-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Additional Page Styles */
.content-item,
.spotlight-item,
.wellness-item,
.story-item,
.mission-item,
.history-item,
.value-item,
.cert-item,
.impact-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.content-item:hover,
.wellness-item:hover,
.mission-item:hover,
.value-item:hover,
.impact-item:hover {
    transform: translateY(-3px);
}

.wellness-item,
.mission-item,
.value-item,
.impact-item {
    text-align: center;
}

.value-icon {
    font-size: 1.5rem;
}

.impact-number {
    color: var(--primary-green);
}

/* Blog Posts */
.blog-post {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-post .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Utilities */
.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

.border-primary {
    border-color: var(--primary-green) !important;
}

/* Animations with Sal.js */
[data-sal] {
    transition-duration: 0.5s;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-shapes {
        display: none;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

/* High contrast colors for accessibility */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #2E7D32;
        --primary-blue: #1565C0;
        --primary-orange: #E65100;
        --primary-purple: #6A1B9A;
        --primary-teal: #00695C;
    }
    
    body {
        color: #000;
    }
    
    .text-muted {
        color: #333 !important;
    }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}



/* Organization Social Links */
.org-social-links {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}



/* Newsletter Form - Classic Style */
.newsletter-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary, #333);
    text-align: center;
}

.newsletter-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.newsletter-button {
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #0056b3;
}

.newsletter-success {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    color: #155724;
    text-align: center;
    font-size: 14px;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
}



/* Live Chat FAQ Widget - Modern Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 300px !important;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 18px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 5px !important;
    border-radius: 3px !important;
    transition: background 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 15px 20px 20px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding-bottom: 12px !important;
    background: transparent !important;
    color: #ffffff !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: rgba(255,255,255,0.8) !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.9) !important;
    display: none !important;
    padding-top: 6px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: rgba(255,255,255,0.9) !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}



/* Google Maps Section */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #666666 !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}



/* CTA Section - Elegant Style */
.website-cta-section {
    padding: 55px 0 !important;
    background: #2c3e50 !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
}

.website-cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%) !important;
}

.website-cta-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 2 !important;
}

.website-cta-title {
    font-size: 30px !important;
    font-weight: 300 !important;
    margin-bottom: 12px !important;
    color: white !important;
    font-family: inherit !important;
    letter-spacing: 1px !important;
}

.website-cta-subtitle {
    font-size: 16px !important;
    margin-bottom: 35px !important;
    color: rgba(255,255,255,0.8) !important;
    font-family: inherit !important;
    font-weight: 300 !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: transparent !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    letter-spacing: 0.5px !important;
}

.website-cta-button:hover {
    background: white !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 40px 0 !important;
    }
    
    .website-cta-title {
        font-size: 24px !important;
    }
}



/* Security Badges */
.website-security-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px 0 !important;
    flex-wrap: wrap !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.website-security-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 16px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 10px !important;
        padding: 20px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}



/* Floating Decorative Icons */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 20px !important;
    color: rgba(0,0,0,0.05) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimation 8s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 10% !important;
    right: 5% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 60% !important;
    right: 3% !important;
    animation-delay: 2s !important;
    font-size: 16px !important;
}

.website-floating-icon.variant-3 {
    top: 30% !important;
    left: 3% !important;
    animation-delay: 4s !important;
    font-size: 24px !important;
}

@keyframes websiteFloatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    25% {
        transform: translateY(-10px) rotate(5deg) !important;
        opacity: 0.5 !important;
    }
    50% {
        transform: translateY(-20px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) !important;
        opacity: 0.5 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: modern
 * Toggle: 6
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * OptimizedCookieManager Styles
 * Уникальные классы с префиксом ocm- для избежания конфликтов
 * Все стили с !important для гарантированного применения
 */

/* ===== БАЗОВЫЕ СТИЛИ ===== */
.ocm-banner {
    position: fixed !important;
    z-index: 999999 !important;
    max-width: 400px !important;
    min-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    transform: translateY(100px) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden !important;
}

.ocm-banner.ocm-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ ===== */
.ocm-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-position-bottom-center {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(100px) !important;
}

.ocm-position-bottom-center.ocm-show {
    transform: translateX(-50%) translateY(0) !important;
}

.ocm-position-top-right {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(-100px) !important;
}

.ocm-position-top-right.ocm-show {
    transform: translateY(0) !important;
}

/* ===== СОДЕРЖИМОЕ БАННЕРА ===== */
.ocm-banner-content,
.ocm-settings {
    padding: 24px !important;
}

.ocm-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.ocm-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.ocm-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #666666 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ocm-close:hover {
    background: #f5f5f5 !important;
    color: #333333 !important;
}

.ocm-description {
    margin: 0 0 20px 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

.ocm-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ocm-btn {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.ocm-btn-accept {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-accept:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-reject {
    background: #6c757d !important;
    color: #ffffff !important;
}

.ocm-btn-reject:hover {
    background: #545b62 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-customize {
    background: transparent !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
}

.ocm-btn-customize:hover {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-save {
    background: #28a745 !important;
    color: #ffffff !important;
}

.ocm-btn-save:hover {
    background: #1e7e34 !important;
    transform: translateY(-1px) !important;
}

.ocm-back {
    background: none !important;
    border: none !important;
    color: #007bff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
}

.ocm-back:hover {
    background: #f8f9fa !important;
}

/* ===== НАСТРОЙКИ COOKIE ===== */
.ocm-category {
    margin-bottom: 20px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.ocm-category-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.ocm-category-title {
    font-weight: 500 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
}

.ocm-category-desc {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* ===== ПЕРЕКЛЮЧАТЕЛИ ===== */
.ocm-switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 24px !important;
}

.ocm-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.ocm-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.ocm-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

input:checked + .ocm-slider {
    background-color: #007bff !important;
}

input:checked + .ocm-slider:before {
    transform: translateX(26px) !important;
}

input:disabled + .ocm-slider {
    background-color: #28a745 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ - БАЗОВЫЕ СТИЛИ ===== */
.ocm-toggle {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ TOGGLE КНОПКИ ===== */
.ocm-toggle.ocm-toggle-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-center-left {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
}

.ocm-toggle.ocm-toggle-position-center-right {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
}

/* ===== TOGGLE СТИЛЬ 6: СТЕКЛЯННЫЙ ЭФФЕКТ ===== */
.ocm-toggle.ocm-toggle-style-6 {
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #333 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.ocm-toggle.ocm-toggle-style-6:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.ocm-settings-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ocm-policy-link {
    color: #007bff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-bottom: 1px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.ocm-policy-link:hover {
    border-bottom-color: #007bff !important;
}

/* ===== ТЕМА: MODERN ===== */
.ocm-theme-modern {
    border-radius: 16px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.ocm-theme-modern .ocm-btn {
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 12px !important;
}

.ocm-theme-modern .ocm-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.ocm-theme-modern .ocm-btn-accept:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3) !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 480px) {
    .ocm-banner {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-buttons {
        flex-direction: column !important;
    }
    
    .ocm-settings-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ocm-category-header {
        flex-wrap: wrap !important;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes ocm-slideUp {
    from {
        transform: translateY(100%) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes ocm-fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

/* ===== ТЕМНАЯ ТЕМА (медиазапрос) ===== */
@media (prefers-color-scheme: dark) {
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
}
