:root {
    --primary-color: #8B4789;
    --primary-dark: #6B356B;
    --primary-light: #A565A3;
    --secondary-color: #5A8C6F;
    --secondary-dark: #4A7359;
    --accent-color: #D4A574;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-lighter: #FAFAFA;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 24px;
    background: transparent;
}

.hamburger {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-text {
    background-color: transparent;
    color: var(--text-light);
    padding: 0.875rem 1rem;
}

.btn-text:hover {
    color: var(--text-dark);
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.hero-visual img {
    width: 100%;
}

.features {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

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

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 4px 16px var(--shadow-md);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
}

.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-lighter);
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

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

.footer-column a {
    color: var(--text-lighter);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin: 0;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.modal.show {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    max-width: 600px;
    margin: 3rem auto;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-lg);
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option-header {
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.page-header {
    padding: 4rem 0 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

.legal-date {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text ul,
.legal-text ol {
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.legal-text ul {
    list-style-type: disc;
}

.legal-text ol {
    list-style-type: decimal;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.about-intro {
    padding: 4rem 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.values {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

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

.process {
    padding: 4rem 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.expertise {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.expertise h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-category {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-category ul {
    list-style-position: inside;
    list-style-type: disc;
}

.tech-category li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.services-overview {
    padding: 4rem 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.service-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    color: var(--bg-white);
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-body ul {
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 1rem;
}

.service-body li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.consultation-cta {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.consultation-cta h2 {
    margin-bottom: 1rem;
}

.consultation-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-light);
}

.contact-note {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

.contact-note ol {
    list-style-position: inside;
    list-style-type: decimal;
    padding-left: 1rem;
}

.contact-note li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-illustration {
    flex: 1;
    min-width: 300px;
}

.contact-illustration img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.contact-highlight {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.contact-highlight p {
    margin: 0;
    color: var(--text-light);
}

.project-info {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.project-info h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.project-info .section-intro-text {
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
}

.location-section {
    padding: 4rem 0;
}

.location-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text {
    color: var(--text-light);
}

.location-details {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.location-details p {
    margin: 0;
    color: var(--text-dark);
}

.thank-you-section {
    padding: 5rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.while-you-wait {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.while-you-wait h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.wait-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.wait-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.wait-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.wait-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        box-shadow: 0 4px 12px var(--shadow-md);
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .features-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-cta {
        justify-content: flex-start;
    }
}