:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cookies-policy h2 {
    color: #34495e;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.cookies-policy h3 {
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cookies-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cookies-policy li {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.consent-notice {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #e74c3c;
    color: #2c3e50;
}

.gdpr-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #16a085;
}

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

.cookie-type-card {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(346, 45%, 89%);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: hsl(346, 45%, 85%);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: hsl(346, 45%, 85%);
    font-size: 1.1rem;
}

.benefits-list li i {
    color: hsl(346, 45%, 59%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary {
    background: hsl(346, 45%, 59%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: hsl(346, 45%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: hsl(346, 45%, 59%);
    border: 2px solid hsl(346, 45%, 59%);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: hsl(346, 45%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stats-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-subtitle {
    color: hsl(346, 45%, 59%);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 59%);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
    padding: 5rem 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form .field label {
    color: hsl(346, 45%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea {
    border: 2px solid hsl(346, 45%, 89%);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: hsl(346, 45%, 19%);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    border-color: hsl(346, 45%, 59%);
    box-shadow: 0 0 0 3px rgba(186, 85, 117, 0.2);
    outline: none;
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
    color: hsl(346, 45%, 69%);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(346, 45%, 34%), hsl(346, 45%, 59%));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(186, 85, 117, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 85, 117, 0.4);
    background: linear-gradient(45deg, hsl(346, 45%, 39%), hsl(346, 45%, 64%));
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: hsl(346, 45%, 89%);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: hsl(346, 45%, 79%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(346, 45%, 89%);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    color: hsl(346, 45%, 79%);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: hsl(346, 45%, 79%);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(346, 45%, 59%), hsl(346, 45%, 34%));
}

.newsletter-title {
    color: hsl(346, 45%, 19%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.newsletter-subtitle {
    color: hsl(346, 45%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(346, 45%, 59%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: hsl(346, 45%, 19%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(346, 45%, 34%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.email-input {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(346, 45%, 59%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(346, 45%, 59%) 0%, hsl(346, 45%, 34%) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.privacy-note {
    color: hsl(346, 45%, 34%);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.advantages-section {
  background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
  padding: 5rem 0;
  color: white;
}

.advantages-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.advantage-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: hsl(346, 45%, 59%);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.advantage-icon {
  font-size: 3rem;
  color: hsl(346, 45%, 59%);
  margin-bottom: 1.5rem;
  display: block;
}

.advantage-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.advantage-card .media-left {
  margin-right: 1.5rem;
}

.advantage-card .media-content {
  overflow: visible;
}

@media (max-width: 768px) {
  .advantages-title {
    font-size: 2.5rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantage-icon {
    font-size: 2.5rem;
  }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-subtitle {
    color: hsl(346, 45%, 85%);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(346, 45%, 59%), hsl(346, 45%, 34%));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: hsl(346, 45%, 59%);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    color: hsl(346, 45%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid hsl(346, 45%, 90%);
    padding-top: 1rem;
}

.testimonial-name {
    color: hsl(346, 45%, 34%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: hsl(346, 45%, 59%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating {
    color: hsl(346, 45%, 59%);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.25rem;
    color: hsl(346, 45%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: hsl(346, 45%, 90%);
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.mission-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

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

.mission-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: hsl(346, 45%, 90%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-section {
        padding: 2rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 4rem 0;
    color: white;
}

.faq-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-accordion {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-accordion:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    background: hsl(346, 45%, 34%);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: hsl(346, 45%, 39%);
}

.faq-question.active {
    background: hsl(346, 45%, 59%);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: hsl(346, 45%, 19%);
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer.active {
        padding: 1.25rem;
    }
}

.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.services-title {
  color: hsl(346, 45%, 34%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.services-subtitle {
  color: hsl(346, 45%, 19%);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: hsl(346, 45%, 59%);
  margin-bottom: 1rem;
}

.service-title {
  color: hsl(346, 45%, 34%);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: hsl(346, 45%, 19%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price {
  color: hsl(346, 45%, 59%);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-conditions {
  background: hsl(346, 45%, 96%);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.service-conditions h6 {
  color: hsl(346, 45%, 34%);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-conditions ul {
  color: hsl(346, 45%, 19%);
  font-size: 0.9rem;
  margin-left: 1rem;
}

.service-conditions li {
  margin-bottom: 0.3rem;
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-footer-content {
  margin-top: auto;
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.25rem;
    color: hsl(346, 45%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: hsl(346, 45%, 90%);
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.mission-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

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

.mission-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: hsl(346, 45%, 90%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-section {
        padding: 2rem;
    }
}

.advantages-section {
  background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
  padding: 5rem 0;
  color: white;
}

.advantages-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.advantage-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: hsl(346, 45%, 59%);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.advantage-icon {
  font-size: 3rem;
  color: hsl(346, 45%, 59%);
  margin-bottom: 1.5rem;
  display: block;
}

.advantage-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.advantage-card .media-left {
  margin-right: 1.5rem;
}

.advantage-card .media-content {
  overflow: visible;
}

@media (max-width: 768px) {
  .advantages-title {
    font-size: 2.5rem;
  }
  
  .advantage-card {
    padding: 1.5rem;
  }
  
  .advantage-icon {
    font-size: 2.5rem;
  }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stats-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-subtitle {
    color: hsl(346, 45%, 59%);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 59%);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #3498db;
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 8px;
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255,255,255,0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    padding: 20px 30px;
}

.privacy-policy li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-policy li::before {
    content: "→";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.privacy-policy .highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #e74c3c;
}

.privacy-policy .last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
    padding: 5rem 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form .field label {
    color: hsl(346, 45%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea {
    border: 2px solid hsl(346, 45%, 89%);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: hsl(346, 45%, 19%);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    border-color: hsl(346, 45%, 59%);
    box-shadow: 0 0 0 3px rgba(186, 85, 117, 0.2);
    outline: none;
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
    color: hsl(346, 45%, 69%);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(346, 45%, 34%), hsl(346, 45%, 59%));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(186, 85, 117, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 85, 117, 0.4);
    background: linear-gradient(45deg, hsl(346, 45%, 39%), hsl(346, 45%, 64%));
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: hsl(346, 45%, 89%);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: hsl(346, 45%, 79%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(346, 45%, 89%);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    color: hsl(346, 45%, 79%);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: hsl(346, 45%, 79%);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
}

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.25rem;
    color: hsl(346, 45%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: hsl(346, 45%, 90%);
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.mission-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

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

.mission-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: hsl(346, 45%, 90%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-section {
        padding: 2rem;
    }
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.services-title {
  color: hsl(346, 45%, 34%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.services-subtitle {
  color: hsl(346, 45%, 19%);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: hsl(346, 45%, 59%);
  margin-bottom: 1rem;
}

.service-title {
  color: hsl(346, 45%, 34%);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: hsl(346, 45%, 19%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price {
  color: hsl(346, 45%, 59%);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-conditions {
  background: hsl(346, 45%, 96%);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.service-conditions h6 {
  color: hsl(346, 45%, 34%);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-conditions ul {
  color: hsl(346, 45%, 19%);
  font-size: 0.9rem;
  margin-left: 1rem;
}

.service-conditions li {
  margin-bottom: 0.3rem;
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-footer-content {
  margin-top: auto;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(346, 45%, 59%), hsl(346, 45%, 34%));
}

.newsletter-title {
    color: hsl(346, 45%, 19%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.newsletter-subtitle {
    color: hsl(346, 45%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(346, 45%, 59%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: hsl(346, 45%, 19%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(346, 45%, 34%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.email-input {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(346, 45%, 59%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(346, 45%, 59%) 0%, hsl(346, 45%, 34%) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.privacy-note {
    color: hsl(346, 45%, 34%);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials-subtitle {
    color: hsl(346, 45%, 85%);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(346, 45%, 59%), hsl(346, 45%, 34%));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: hsl(346, 45%, 59%);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    color: hsl(346, 45%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid hsl(346, 45%, 90%);
    padding-top: 1rem;
}

.testimonial-name {
    color: hsl(346, 45%, 34%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: hsl(346, 45%, 59%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating {
    color: hsl(346, 45%, 59%);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2c3e50;
}

.terms-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
}

.terms-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "▶";
    margin-right: 10px;
    color: #3498db;
}

.terms-text {
    font-size: 1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #555;
}

.terms-list {
    padding-left: 20px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 8px;
    color: #555;
}

.highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}

:root {
            --primary-color: hsl(346, 45%, 34%);
            --secondary-color: hsl(346, 45%, 19%);
            --accent-color: hsl(346, 45%, 59%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .navbar-brand .navbar-item {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .navbar-brand .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-menu {
            background-color: var(--primary-color);
        }
        
        .navbar-item {
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .navbar-burger {
            color: white;
        }
        
        .navbar-burger:hover {
            background-color: var(--secondary-color);
        }
        
        .navbar-burger.is-active {
            background-color: var(--secondary-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        @media screen and (max-width: 1023px) {
            .navbar-menu {
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 4rem 0;
    color: white;
}

.faq-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-accordion {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-accordion:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    background: hsl(346, 45%, 34%);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: hsl(346, 45%, 39%);
}

.faq-question.active {
    background: hsl(346, 45%, 59%);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: hsl(346, 45%, 19%);
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer.active {
        padding: 1.25rem;
    }
}

.about-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    color: white;
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.25rem;
    color: hsl(346, 45%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: hsl(346, 45%, 90%);
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.mission-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

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

.mission-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(346, 45%, 85%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: hsl(346, 45%, 90%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content.reverse {
        flex-direction: column;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-section {
        padding: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(346, 45%, 59%), hsl(346, 45%, 34%));
}

.newsletter-title {
    color: hsl(346, 45%, 19%);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.newsletter-subtitle {
    color: hsl(346, 45%, 34%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(346, 45%, 59%);
    margin-bottom: 1rem;
}

.benefit-title {
    color: hsl(346, 45%, 19%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(346, 45%, 34%);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.email-input {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(346, 45%, 59%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(346, 45%, 59%) 0%, hsl(346, 45%, 34%) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(346, 45%, 34%) 0%, hsl(346, 45%, 19%) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.privacy-note {
    color: hsl(346, 45%, 34%);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

:root {
    --primary-color: hsl(346, 45%, 34%);
    --secondary-color: hsl(346, 45%, 19%);
    --accent-color: hsl(346, 45%, 59%);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

.footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .company-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer .contact-info p {
    margin-bottom: 0.5rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-notice .button.is-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-light:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cookie-notice .button.is-outlined {
    border-color: white;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cookie-notice .button.is-outlined:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-notice .button.is-text {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notice .button.is-text:hover {
    color: white;
}

@media screen and (max-width: 768px) {
    .cookie-notice .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .button {
        width: 100%;
    }
}