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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d6b;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-main {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.brand-zone .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-items a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #2c5aa0;
}

.hero-offset {
    display: flex;
    align-items: center;
    padding: 80px 5% 80px 8%;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5aa0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1a3d6b;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c5aa0;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #e8f0f8;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.intro-stagger {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-block-small {
    flex: 1.2;
    padding-left: 60px;
}

.intro-block-small h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
    line-height: 1.3;
}

.intro-block-small p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.intro-visual-right {
    flex: 1;
    background-color: #f5f5f5;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.problem-layered {
    padding: 90px 5%;
    background-color: #f9fafb;
    position: relative;
}

.layer-back {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding-left: 120px;
}

.layer-back h3 {
    font-size: 44px;
    font-weight: 700;
    color: #0a0a0a;
}

.layer-front {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 60px;
    background-color: #ffffff;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.layer-front p {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
}

.services-preview-cards {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading-offset {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    padding-left: 80px;
    color: #0a0a0a;
}

.cards-grid-irregular {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h4 {
    padding: 20px 25px 10px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
}

.service-card p {
    padding: 0 25px 15px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.price-tag {
    display: block;
    padding: 15px 25px 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: #2c5aa0;
}

.card-large {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
}

.card-offset-up {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
    margin-top: -30px;
}

.card-small {
    flex: 1 1 calc(25% - 15px);
    min-width: 280px;
    margin-top: 20px;
}

.cta-inline-offset {
    margin-top: 50px;
    text-align: right;
    padding-right: 60px;
}

.cta-inline-offset a {
    font-size: 17px;
    font-weight: 600;
    color: #2c5aa0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-inline-offset a:hover {
    border-bottom-color: #2c5aa0;
}

.trust-diagonal {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 5%;
    background-color: #f3f6f9;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content-shift {
    flex: 1;
    padding-left: 40px;
}

.trust-content-shift h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.trust-content-shift p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.trust-image-break {
    flex: 1;
    background-color: #dde5ed;
}

.trust-image-break img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.testimonials-floating {
    padding: 90px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: #ffffff;
    border-left: 5px solid #2c5aa0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.testimonial-left {
    margin-top: 0;
}

.testimonial-right {
    margin-top: 50px;
}

.testimonial-block blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-asymmetric {
    display: flex;
    gap: 70px;
    padding: 100px 5%;
    background-color: #f9fafb;
    max-width: 1400px;
    margin: 0 auto;
}

.form-wrapper-offset {
    flex: 1.3;
    padding-left: 40px;
}

.form-wrapper-offset h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a3d6b;
    transform: translateY(-2px);
}

.form-visual-side {
    flex: 1;
    background-color: #e5ebf1;
}

.form-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.closing-break {
    padding: 90px 5%;
    background-color: #1a3d6b;
    text-align: center;
}

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

.closing-content h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.closing-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e8f0;
}

.footer-stacked {
    background-color: #0f1419;
    color: #c0c0c0;
    padding: 60px 5% 30px 5%;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    flex-wrap: wrap;
}

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

.footer-brand {
    flex: 1.5;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: #1a2028;
    border-left: 3px solid #2c5aa0;
    font-size: 13px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2a2a2a;
    font-size: 13px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #5b9fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #333333;
}

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

.about-text-zone {
    flex: 1;
    padding-right: 40px;
}

.about-text-zone h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-image-zone {
    flex: 1;
    background-color: #f0f4f8;
}

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

.story-offset {
    padding: 90px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.story-offset h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
    padding-left: 60px;
    color: #0a0a0a;
}

.story-content-irregular {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-content-irregular p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    padding-left: 40px;
}

.approach-layered {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 5%;
    background-color: #f9fafb;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-block-left {
    flex: 1;
    padding-left: 50px;
}

.approach-block-left h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.approach-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.approach-block-right {
    flex: 1;
    background-color: #e0e8f0;
}

.approach-block-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.values-floating {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.values-floating h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #0a0a0a;
}

.values-grid-irregular {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.value-offset-1 {
    margin-top: 0;
}

.value-offset-2 {
    margin-top: 30px;
}

.value-offset-3 {
    margin-top: 60px;
}

.value-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-stagger {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-stagger h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.team-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 50px;
    max-width: 800px;
}

.team-visual {
    background-color: #f0f4f8;
}

.team-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.cta-about {
    padding: 80px 5%;
    text-align: center;
    background-color: #f3f6f9;
}

.cta-about h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.services-hero {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9fafb;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.services-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-alt-1 {
    flex-direction: row;
}

.service-alt-2 {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 40px;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.service-content-left p,
.service-content-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #555;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 25px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #2c5aa0;
}

.price-unit {
    font-size: 14px;
    color: #666;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8f0f8;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.services-cta-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9fafb;
}

.services-cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.services-cta-section p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.contact-hero {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9fafb;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details-offset {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
    padding-left: 40px;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0a0a0a;
}

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

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-visual {
    flex: 1;
    background-color: #e8f0f8;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.contact-note {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
    padding-right: 40px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.service-confirm {
    margin-bottom: 25px;
}

.service-selected {
    font-size: 16px;
    color: #2c5aa0;
    font-weight: 600;
}

.thanks-note {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    background-color: #e8f0f8;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.legal-content {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #0a0a0a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

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

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.gdpr-table th,
.cookies-table th {
    background-color: #f3f6f9;
    font-weight: 700;
    color: #0a0a0a;
}

.gdpr-table td,
.cookies-table td {
    font-size: 15px;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-stagger,
    .trust-diagonal,
    .approach-layered,
    .form-asymmetric,
    .about-hero-split,
    .contact-details-offset,
    .thanks-hero,
    .service-full {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left,
    .about-text-zone {
        padding-right: 0;
    }

    .hero-image-overlap {
        margin-top: 0;
    }

    .intro-block-small {
        padding-left: 0;
    }

    .layer-back {
        padding-left: 0;
    }

    .section-heading-offset {
        padding-left: 0;
    }

    .story-offset h2 {
        padding-left: 0;
    }

    .story-content-irregular p {
        padding-left: 0;
    }

    .approach-block-left {
        padding-left: 0;
    }

    .contact-info-block {
        padding-left: 0;
    }

    .form-wrapper-offset {
        padding-left: 0;
    }

    .thanks-content {
        padding-right: 0;
    }

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

    .testimonials-floating {
        flex-direction: column;
    }

    .testimonial-right {
        margin-top: 0;
    }

    .nav-items {
        gap: 20px;
        flex-wrap: wrap;
    }
}
