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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navigation {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a5490;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a5490;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #495057;
}

.hero-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #134072;
}

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-grid {
    padding: 100px 60px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image {
    flex: 0 0 280px;
    background: #e9ecef;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #134072;
}

.contact-form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #495057;
}

.form-container {
    flex: 1.5;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.selected-service-display {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #134072;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #134072;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.value-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.value-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 18px;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 60px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-block p {
    color: #adb5bd;
    line-height: 1.8;
}

.footer-block a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #6ea8d8;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #1a5490;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #134072;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    padding: 100px 60px 60px;
    text-align: center;
    background: #f8f9fa;
}

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

.page-hero p {
    font-size: 20px;
    color: #6c757d;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-approach {
    padding: 80px 60px;
    background: #f8f9fa;
}

.team-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a5490;
}

.approach-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.values-visual {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.values-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-text {
    flex: 1.2;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-text p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 18px;
    line-height: 1.8;
}

.certifications {
    padding: 80px 60px;
    background: #1a5490;
    color: #ffffff;
}

.certifications h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.certifications p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
}

.service-detail-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-detail-header {
    background: #f8f9fa;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 28px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
}

.service-detail-body {
    padding: 40px;
}

.service-detail-body p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-body ul {
    list-style: none;
}

.service-detail-body ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.service-detail-body ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #1a5490;
    font-weight: 700;
}

.pricing-note {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 30px 60px;
    background: #e7f3ff;
    border-radius: 8px;
}

.pricing-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #134072;
}

.pricing-note p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.contact-info-layout {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 60px;
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1.5;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

.contact-block p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-note {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 30px 60px;
    background: #f8f9fa;
    border-radius: 8px;
}

.location-note h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.location-note p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.thanks-content {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-message {
    flex: 1.2;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a5490;
}

.thanks-message p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.8;
}

.thanks-service-info {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary {
    background: #1a5490;
    color: #ffffff;
}

.btn-primary:hover {
    background: #134072;
}

.btn-secondary {
    background: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.thanks-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legal-content {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 60px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a5490;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
    margin-left: 25px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #6c757d;
}

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

.gdpr-table thead {
    background: #f8f9fa;
}

.gdpr-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #dee2e6;
}

.gdpr-table td {
    padding: 15px;
    border: 1px solid #dee2e6;
    color: #495057;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .contact-form-section,
    .value-split,
    .about-story,
    .values-visual,
    .contact-info-layout,
    .thanks-content {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }
}
