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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3a6b;
    --accent-color: #4a90e2;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

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

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

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--bg-dark);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero .subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.intro-section {
    padding: 60px 20px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.insight-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.insight-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.insight-item {
    flex: 1;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insight-item p {
    color: var(--text-light);
}

.full-width-dark {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 20px;
}

.full-width-dark h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.competence-flow {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.flow-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.flow-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.flow-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.flow-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 20px;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    width: 100%;
    height: 250px;
    background-color: var(--bg-light);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
    background-color: var(--bg-light);
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
}

.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

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

.about-content {
    padding: 60px 20px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.approach-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.approach-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.approach-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.experience-section {
    padding: 60px 20px;
}

.experience-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.experience-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-price-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.price-label {
    font-weight: 600;
    margin-right: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.pricing-note {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-note p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-form-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-section p {
    text-align: center;
    color: var(--text-light);
}

.contact-form-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-section {
    padding: 60px 20px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 20px;
}

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

.thanks-icon {
    font-size: 72px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-confirmation h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-confirmation p {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.additional-info {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.additional-info p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.info-links a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .insight-grid,
    .competence-flow,
    .testimonials-grid,
    .footer-grid,
    .approach-grid,
    .contact-layout {
        flex-direction: column;
    }

    .about-split,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}