:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1e4466;
    --primary-light: #4a7ba7;
    --secondary-color: #6b8e9e;
    --accent-color: #e67e50;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.site-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: none;
    list-style: none;
    padding: 0;
}

.main-nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-color);
    font-weight: 500;
}

.main-nav a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: var(--bg-gray);
    color: var(--text-color);
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 0;
}

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    margin-top: 2rem;
}

section {
    padding: 3rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro-text {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
}

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

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-color);
}

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.step-content h3 {
    color: var(--primary-color);
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

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

.knowledge-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-section {
    background-color: var(--bg-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--bg-light);
    border: none;
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--bg-gray);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3, .footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
}

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-left: 1.75rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: normal;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.95;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.team-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: -29px;
}

.timeline-content {
    padding-left: 2rem;
}

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

.standards-content {
    max-width: 800px;
    margin: 0 auto;
}

.accreditations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.accreditation-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detailed {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-info h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-price {
    display: flex;
    align-items: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.step-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-column {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-column.highlight {
    background-color: var(--primary-color);
    color: white;
}

.comparison-column.highlight h3 {
    color: white;
}

.comparison-column.highlight ul {
    color: white;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding-left: 1.5rem;
    position: relative;
}

.comparison-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.comparison-column.highlight li::before {
    color: white;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.office-content, .directions-content {
    max-width: 800px;
    margin: 0 auto;
}

.direction-method {
    margin-bottom: 2rem;
}

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

.expectations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expectation-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

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

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

.company-details p {
    margin-bottom: 0.75rem;
}

.alternative-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.support-list li {
    padding: 1rem;
    background-color: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.thank-you-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #20803d 100%);
    color: white;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
}

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

.thank-you-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-box .step-number {
    margin: 0 auto 1rem;
}

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

.waiting-content, .urgent-info {
    max-width: 800px;
    margin: 0 auto;
}

.resource-list {
    padding-left: 1.5rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.link-card h3 {
    margin-bottom: 0.5rem;
}

.link-card h3 a {
    color: var(--primary-color);
}

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

.legal-section {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul, .legal-section ol {
    margin-left: 1.5rem;
}

.cookie-table {
    width: 100%;
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cookie-table tr {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.cookie-table td {
    padding: 0.25rem 0;
}

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

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .main-nav li {
        margin-left: 2rem;
    }

    .main-nav a {
        padding: 0.5rem 0;
    }

    .main-nav a:hover {
        background-color: transparent;
    }

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

    .hero {
        padding: 5rem 0;
    }

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

    .hero p {
        font-size: 1.25rem;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        text-align: left;
    }

    .hero-visual {
        margin-top: 0;
        flex: 0 0 40%;
    }

    section {
        padding: 4rem 0;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .benefit-item {
        flex-direction: row;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .accreditations {
        flex-direction: row;
    }

    .accreditation-item {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-info {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-box {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .step-detailed {
        flex-direction: row;
    }

    .comparison-table {
        flex-direction: row;
    }

    .comparison-column {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

    .expectations-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expectation-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .steps-content {
        flex-direction: row;
    }

    .step-box {
        flex: 1;
    }

    .links-grid {
        flex-direction: row;
    }

    .link-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-table tr {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-table td:first-child {
        flex: 0 0 40%;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .stat-item {
        flex: 0 0 calc(25% - 1.125rem);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .industry-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .value-card {
        flex: 0 0 calc(25% - 1.125rem);
    }

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