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

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #28a745;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.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(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
}

.hero-right img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

.trust-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

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

.feature-row {
    display: flex;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--bg-white);
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    background-color: var(--border-color);
}

.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-block {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-block blockquote {
    text-align: center;
}

.testimonial-block p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 16px;
    opacity: 0.9;
}

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

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 15px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 41, 59, 0.95);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-cookie-alt {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 8px;
}

.price-unit {
    font-size: 16px;
    color: var(--text-light);
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

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

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-intro {
    display: flex;
    background-color: var(--bg-white);
}

.about-intro-content {
    flex: 1;
    padding: 80px 50px;
}

.about-intro-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-intro-image {
    flex: 1;
    background-color: var(--border-color);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.approach-split {
    display: flex;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: var(--border-color);
}

.approach-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.approach-content {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--bg-white);
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.stats-section {
    padding: 80px 20px;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

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

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

.industries-section > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-tag {
    padding: 10px 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 15px;
    color: var(--text-dark);
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-page {
    padding: 60px 20px 80px;
    background-color: var(--bg-white);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 35px;
}

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

.contact-value {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-page {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

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

.steps-list {
    list-style-position: inside;
    color: var(--text-dark);
}

.steps-list li {
    padding: 10px 0;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.thanks-contact p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-email {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 8px;
}

.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-updated {
    margin-top: 50px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

.gdpr-table td,
.cookies-table td {
    font-size: 15px;
}

#reset-cookies {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero-split,
    .feature-row,
    .service-detail-split,
    .about-intro,
    .approach-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-left h1,
    .about-intro-content h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .main-nav {
        gap: 20px;
    }

    .services-grid,
    .process-steps,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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