:root {
    --color-primary: #8d6e5d;
    --color-primary-hover: #a1826d;
    --color-text-primary: #2c2c2c;
    --color-text-secondary: #555;
    --color-card-bg: #ffffff;
    --color-accent-bg: #f9f6f2;
    --color-border: #e0d3c8;
    --color-cta-primary: #8d6e5d;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f6f2;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

a:hover {
    color: #a1826d;
    text-decoration: none;
}


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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8d6e5d;
    color: white;
}

.btn-primary:hover {
    background-color: #a1826d;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #8d6e5d;
    border: 2px solid #8d6e5d;
}

.btn-secondary:hover {
    background-color: #8d6e5d;
    color: white;
}

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

.btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #8d6e5d;
    color: #8d6e5d;
}

.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: btnSpin 1s linear infinite;
}

@keyframes btnSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: white;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    max-height: 90vh;
    margin: 2rem auto;
    transform: translateY(50px) scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal.show .cookie-modal-content {
    transform: translateY(0) scale(1);
}

.cookie-modal-header {
    background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-modal-body p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category:nth-child(1) { animation-delay: 0.1s; }
.cookie-category:nth-child(2) { animation-delay: 0.2s; }
.cookie-category:nth-child(3) { animation-delay: 0.3s; }
.cookie-category:nth-child(4) { animation-delay: 0.4s; }

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

.cookie-category {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.cookie-category:hover {
    border-color: #c9a886;
    box-shadow: 0 4px 15px rgba(201, 168, 134, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.cookie-category-info p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-details {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.cookie-details small {
    color: #999;
    font-style: italic;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    border-radius: 26px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, #c9a886, #8d6e5d);
}

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

.cookie-toggle input:disabled + .toggle-slider {
    background: linear-gradient(135deg, #c9a886, #8d6e5d);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle:hover .toggle-slider {
    box-shadow: 0 0 20px rgba(201, 168, 134, 0.3);
}

.cookie-toggle input:checked + .toggle-slider:hover {
    box-shadow: 0 0 20px rgba(141, 110, 93, 0.4);
}

.cookie-modal-footer {
    background: #f9f9f9;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-modal-links .cookie-link {
    color: #8d6e5d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-modal-links .cookie-link:hover {
    color: #a1826d;
    text-decoration: underline;
}

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

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

.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #8d6e5d;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px; 
    min-height: 48px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background-color: rgba(141, 110, 93, 0.08);
    outline: none;
}

.mobile-menu-toggle:focus {
    box-shadow: 0 0 0 2px rgba(141, 110, 93, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #8d6e5d;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.main-nav a {
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    text-decoration: none;
}

.main-nav a:hover {
    color: white;
    background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(141, 110, 93, 0.3);
}

.main-nav a:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.dropdown {
    position: relative;
}

.dropdown > a .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #8d6e5d;
}

.dropdown:hover > a .arrow,
.dropdown.active > a .arrow {
    transform: rotate(180deg);
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(141, 110, 93, 0.08);
    padding: 8px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 8px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    margin: 2px 0;
}

.dropdown-menu a:hover {
    color: white;
    background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(141, 110, 93, 0.2);
}


.hero {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


section {
    padding: 60px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

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

.section-image {
    text-align: center;
    margin-top: 2rem;
}

.section-image img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .section-image img {
        max-width: 70%;
    }
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a886, #8d6e5d);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.service-card p {
    margin-bottom: 1.5rem;
}

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

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    background: #c9a886;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #c9a886;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8d6e5d;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #666;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c2c2c;
}

.faq-question:hover {
    background-color: #f9f6f2;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #8d6e5d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(141, 110, 93, 0.9) 0%, rgba(161, 130, 109, 0.9) 100%), url('/img/background-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(141, 110, 93, 0.1) 0%, rgba(161, 130, 109, 0.1) 100%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.newsletter-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.newsletter-form input[type="email"]:focus {
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    border-radius: 8px;
    padding: 14px 24px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-form .checkbox-wrapper {
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.newsletter-form .checkbox-wrapper a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-form .checkbox-wrapper a:hover {
    color: white;
}

.main-footer {
    background-color: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    color: #c9a886;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #c9a886;
}

.footer-column p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-cookie-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-cookie-btn:hover {
    color: #c9a886;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8d6e5d;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
    background: #a1826d;
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.error-page {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f6f2 0%, #f0ebe5 100%);
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: #8d6e5d;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(141, 110, 93, 0.2);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.error-message {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.search-suggestions {
    background: white;
    padding: 60px 0;
}

.error-contact-cta {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .error-page {
        padding: 60px 0;
    }
    
    .error-page .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .error-message {
        font-size: 1.4rem;
    }
    
    .search-suggestions .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.search-suggestions div[style*="background: white"] {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-suggestions div[style*="background: white"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 110, 93, 0.15) !important;
    border-color: #c9a886;
}

.search-suggestions h4 {
    position: relative;
}

.search-suggestions h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #c9a886, #8d6e5d);
    border-radius: 2px;
}

.search-suggestions ul li a {
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.search-suggestions ul li a:hover {
    color: #8d6e5d !important;
    transform: translateX(5px);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        background: none !important;
        transform: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
    }
    
    .main-nav a:hover,
    .main-nav a:focus,
    .main-nav a:active {
        background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%) !important;
        transform: none !important;
        box-shadow: none !important;
        color: white !important;
    }
    
    .main-nav a {
        min-height: 48px; 
        display: flex;
        align-items: center;
    }
    
    .dropdown > a .arrow {
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
        color: #8d6e5d !important;
    }

    .dropdown.active > a .arrow {
        transform: rotate(180deg);
        color: #8d6e5d !important;
    }
    
    .main-nav a:hover .arrow,
    .main-nav a:focus .arrow,
    .main-nav a:active .arrow {
        color: white !important;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(141, 110, 93, 0.05);
        border-radius: 0;
        margin: 0 20px;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 8px 0;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        margin: 0;
        border-radius: 0;
        padding: 12px 20px;
        transition: all 0.3s ease !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus,
    .dropdown-menu a:active {
        transform: none;
        background: linear-gradient(135deg, #c9a886 0%, #8d6e5d 100%) !important;
        box-shadow: none !important;
        color: white !important;
    }
    
    .dropdown-menu a {
        min-height: 44px; 
        display: flex;
        align-items: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero > .container > div[style*="grid-template-columns"],
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .cookie-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .cookie-toggle {
        align-self: flex-end;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .cookie-modal-links {
        justify-content: center;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons .btn {
        width: 100%;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .newsletter-section > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .newsletter-section img {
        max-width: 60% !important;
        order: -1;
        margin: 0 auto;
    }
    
    .newsletter-section .newsletter-content {
        text-align: center;
    }
    
    .newsletter-section .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-section .newsletter-content p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
        max-width: 90%;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
    
    .newsletter-form .checkbox-wrapper {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
        margin-top: 1rem;
    }
    
    .newsletter-form .checkbox-wrapper a {
        color: rgba(255,255,255,0.9);
        text-decoration: underline;
    }
    
    .newsletter-form .checkbox-wrapper a:hover {
        color: white;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; 
    }
    
    .service-areas > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .newsletter-form .form-group {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-section [style*="grid-template-columns: 1fr 1fr"] {
        gap: 3rem !important;
    }
    
    .contact-form-section div[style*="background: white; padding: 2rem"],
    .contact-form-section div[style*="background: white; padding: 2.5rem"] {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
}

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 400px;
    min-width: 300px;
    pointer-events: all;
    position: relative;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(450px);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    background: #10b981;
    color: white;
}

.notification.error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification.info .notification-icon {
    background: #3b82f6;
    color: white;
}

.notification-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
}

.notification-message {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #e5e7eb;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8d6e5d, #c9a886);
    width: 100%;
    transform: translateX(-100%);
    animation: notificationProgress 5s linear forwards;
}

@keyframes notificationProgress {
    to {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
        margin: 0 0 1rem 0;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification.hide {
        transform: translateY(-100px);
    }
}

@media print {
    .main-header,
    .main-footer,
    .cookie-banner,
    .scroll-to-top,
    .newsletter-section,
    .notification-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        padding: 20px 0;
    }
}

.cookie-content a[href*="adssettings.google.com"],
.cookie-content a[href*="facebook.com/settings"],
.cookie-content a[href*="about.ads.microsoft.com"] {
    transition: all 0.3s ease !important;
}

.cookie-content a[href*="adssettings.google.com"]:hover,
.cookie-content a[href*="facebook.com/settings"]:hover,
.cookie-content a[href*="about.ads.microsoft.com"]:hover {
    color: #c9a886 !important;
    transform: translateY(-2px);
}

.cookie-content div[style*="linear-gradient"]:hover {
    box-shadow: 0 4px 15px rgba(141, 110, 93, 0.15);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.change-challenges [style*="grid-template-columns: repeat(2, 1fr)"] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .change-challenges [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

.interim-managers [style*="grid-template-columns: repeat(3, 1fr)"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .interim-managers [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .interim-managers [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.process-approach [style*="grid-template-columns: repeat(3, 1fr)"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .process-approach [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .process-approach [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.why-choose [style*="grid-template-columns: repeat(2, 1fr)"] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .why-choose [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}


.contact-form-section [style*="grid-template-columns: 1fr 1fr"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-form-section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form-section div[style*="background: white; padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    .contact-form-section div[style*="background: white; padding: 2.5rem"] {
        padding: 1.5rem !important;
    }
    
    .contact-faq [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-faq div[style*="background: #f9f6f2"] {
        padding: 1.5rem !important;
    }
    
    .data-protection-notice div[style*="background: #f0ebe5"] {
        padding: 1.5rem !important;
        margin: 0 -15px;
        border-radius: 0 !important;
        border-left: 4px solid #c9a886 !important;
    }
    
    .contact-form-section form {
        margin: 0;
    }
    
    .contact-form-section .form-group {
        margin-bottom: 1.2rem;
    }
    
    .contact-form-section .btn {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-form-section h3 {
        font-size: 1.2rem;
    }
}

/* Success Story Section */
.success-story {
    background-color: white;
    padding: 4rem 0;
}

.success-story-content {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.success-story-stats {
    text-align: center;
}

.success-story-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-story-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-story-label {
    color: var(--text-color);
    font-size: 1.1rem;
}

.success-story-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.success-story-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.success-story-card p {
    margin: 0 0 1rem 0;
}

.success-story-card p:last-child {
    margin-bottom: 0;
}

.success-story-card strong {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .success-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .success-story-content {
        padding: 2rem;
    }

    .success-story-icon {
        width: 60px;
        height: 60px;
    }

    .success-story-number {
        font-size: 2.5rem;
    }

    .success-story-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .success-story-content {
        padding: 1.5rem;
    }

    .success-story-card {
        padding: 1rem;
    }
}

/* Digital Approach Section Styles */
.digital-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.digital-approach-step {
    background: var(--color-card-bg);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.digital-approach-step:hover {
    transform: translateY(-5px);
}

.digital-step-number {
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    background: var(--color-cta-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.digital-approach-step h4 {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
}

.digital-approach-step p {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .digital-approach-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .digital-approach-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .digital-approach-step {
        padding: 1.5rem;
    }

    .digital-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .digital-approach-step h4 {
        font-size: 1.1rem;
    }

    .digital-approach-step p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .digital-approach-grid {
        max-width: 100%;
    }

    .digital-approach-step {
        padding: 1.25rem;
    }

    .digital-step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .digital-approach-step h4 {
        font-size: 1rem;
    }

    .digital-approach-step p {
        font-size: 0.85rem;
    }
}

/* Technology Areas Section Styles */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
}

.technology-card {
    background: var(--color-card-bg);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.technology-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(to bottom, var(--color-card-bg), var(--color-accent-bg));
    box-shadow: 0 8px 24px rgba(177, 135, 107, 0.25);
    border-color: var(--color-border);
}

.technology-icon {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    background: linear-gradient(135deg, var(--color-cta-primary), var(--color-border));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.technology-card:hover .technology-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-border), var(--color-cta-primary));
}

.technology-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    transition: all 0.3s ease;
}

.technology-card h4 {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.technology-card:hover h4 {
    color: var(--color-cta-primary);
}

.technology-card p {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.technology-card:hover p {
    color: var(--color-text-primary);
}

@media (max-width: 1200px) {
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .technology-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .technology-card {
        padding: 1.5rem;
    }

    .technology-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .technology-card h4 {
        font-size: 1.1rem;
    }

    .technology-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .technology-grid {
        max-width: 100%;
    }

    .technology-card {
        padding: 1.25rem;
    }

    .technology-icon {
        width: 40px;
        height: 40px;
    }

    .technology-card h4 {
        font-size: 1rem;
    }

    .technology-card p {
        font-size: 0.85rem;
    }
}