:root {
    --primary-color: #2c5f7c;
    --secondary-color: #8b9d77;
    --accent-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #5a5a5a;
    --background-light: #f8f8f6;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    font-size: 16px;
}

.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: var(--transition);
}

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

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

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.main-header {
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    padding: 0.5rem 20px;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #234a5f;
    color: var(--background-white);
}

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

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

.hero {
    background: linear-gradient(135deg, #2c5f7c 0%, #3a7290 100%);
    color: var(--background-white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--background-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

section {
    padding: 3rem 0;
}

.philosophy-section {
    background: var(--background-light);
}

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

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

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.services-highlight h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-card {
    padding: 2rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

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

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

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

.process-section {
    background: var(--background-light);
}

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

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 8px;
}

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

.testimonials-section {
    background: var(--background-white);
}

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

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

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

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--text-light);
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
}

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

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

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

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

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

.insights-section {
    background: var(--background-light);
}

.insights-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.insight-card {
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.insight-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question:hover {
    background: var(--background-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--background-light);
}

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

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

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

.cta-section {
    background: var(--secondary-color);
    color: var(--background-white);
    text-align: center;
}

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

.cta-content p {
    margin-bottom: 2rem;
}

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

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

.footer-section h3 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: var(--background-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--background-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 p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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: var(--background-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;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 4px;
}

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

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

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.story-section {
    padding: 3rem 0;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    margin-bottom: 1.5rem;
}

.values-section {
    background: var(--background-light);
}

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

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

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

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

.team-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

.milestones-section {
    background: var(--background-light);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.benefits-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
}

.approach-section {
    background: var(--background-light);
}

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

.services-intro {
    text-align: center;
    padding: 2rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 3rem 0;
}

.service-block {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-header h2 {
    margin: 0;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-includes h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
}

.service-benefits {
    background: var(--background-light);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

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

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

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

.contact-intro {
    background: var(--background-light);
}

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

.contact-details {
    padding: 3rem 0;
}

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

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

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

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

.contact-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-location {
    background: var(--background-light);
}

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

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

.location-text h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.company-info-section {
    padding: 3rem 0;
}

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

.company-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

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

.visit-us {
    background: var(--background-light);
}

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

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

.visit-item {
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 8px;
}

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

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    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-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps {
    background: var(--background-light);
}

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

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

.step-card {
    padding: 2rem;
    background: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.legal-header {
    background: var(--background-light);
    padding: 3rem 0 2rem;
    text-align: center;
}

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

.legal-content {
    padding: 3rem 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.5rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

    h2 {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero {
        padding: 6rem 0;
    }

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

    section {
        padding: 4rem 0;
    }

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

    .icon-item {
        flex: 1;
        min-width: 200px;
    }

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

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .testimonial {
        flex: 1;
        min-width: 280px;
    }

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

    .stat {
        flex: 1;
    }

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

    .industry-card {
        flex: 1;
        min-width: 250px;
    }

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

    .insight-card {
        flex: 1;
        min-width: 250px;
    }

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

    .footer-section {
        flex: 1;
    }

    .cookie-buttons {
        flex-direction: row;
    }

    .modal-buttons {
        flex-direction: row;
    }

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

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

    .value-card {
        flex: 1;
        min-width: 250px;
    }

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

    .team-area {
        flex: 1;
        min-width: 280px;
    }

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

    .benefit-box {
        flex: 1;
        min-width: 250px;
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .flow-step {
        flex: 1;
        min-width: 180px;
    }

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

    .contact-card {
        flex: 1;
    }

    .visit-benefits {
        flex-direction: row;
    }

    .visit-item {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .step-card {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 8rem 0;
    }

    section {
        padding: 5rem 0;
    }
}