* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #f0f0f0;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #444;
}

.hero-image-angled {
    flex: 1;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    min-height: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.intro-offset {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    align-items: center;
    background-color: #fafafa;
}

.intro-block-left {
    flex: 1;
}

.intro-block-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.intro-image-right {
    flex: 1;
}

.intro-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.services-preview-stagger {
    padding: 100px 8%;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}

.services-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-bottom: 50px;
}

.service-card {
    width: calc(33.333% - 35px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.card-top {
    margin-top: 0;
}

.service-card.card-middle {
    margin-top: 30px;
}

.service-card.card-bottom {
    margin-top: 60px;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #ddd;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    font-weight: 700;
}

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

.services-link-inline {
    text-align: center;
    margin-top: 40px;
}

.services-link-inline a {
    font-size: 18px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.services-link-inline a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.trust-block-overlap {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    background-color: #f9f9f9;
    align-items: flex-start;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.form-container-offset {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.disclaimer-block {
    padding: 60px 8%;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 8% 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-brand {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 8%;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn-accept {
    background-color: #0066cc;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #0052a3;
}

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

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

.page-header-offset {
    padding: 120px 8% 60px;
    background-color: #f9f9f9;
}

.page-header-offset h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

.services-list-asymmetric {
    padding: 80px 8%;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.services-cta-block {
    padding: 80px 8%;
    background-color: #f0f7ff;
    text-align: center;
}

.services-cta-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-cta-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #fff;
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #0066cc;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.about-hero-diagonal {
    display: flex;
    min-height: 70vh;
}

.about-hero-text {
    flex: 1;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.about-hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.about-content-split {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-offset {
    flex: 1;
}

.about-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.about-experience {
    padding: 100px 8%;
    background-color: #f9f9f9;
}

.about-experience h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.experience-item {
    width: calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.experience-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.about-approach {
    padding: 100px 8%;
}

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

.approach-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-team-minimal {
    padding: 100px 8%;
    background-color: #fafafa;
}

.about-team-minimal h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-image-centered {
    max-width: 900px;
    margin: 0 auto;
}

.team-image-centered img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.contact-header-angled {
    padding: 120px 8% 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.contact-header-angled h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    max-width: 750px;
}

.contact-details-asymmetric {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0066cc;
}

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

.contact-visual-right {
    flex: 1;
}

.contact-visual-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.contact-note {
    padding: 80px 8%;
    background-color: #f9f9f9;
}

.contact-note h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-bottom: 20px;
}

.contact-map-placeholder {
    padding: 80px 8%;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-container {
    display: flex;
    min-height: 70vh;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
    font-style: italic;
}

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

.btn-back,
.btn-services {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-back {
    background-color: #0066cc;
    color: #fff;
}

.btn-back:hover {
    background-color: #0052a3;
}

.btn-services {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-services:hover {
    background-color: #0066cc;
    color: #fff;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #e8e8e8;
}

.legal-page {
    padding: 100px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
}

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

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-offset,
    .trust-block-overlap,
    .service-detail,
    .about-hero-diagonal,
    .about-content-split,
    .contact-details-asymmetric,
    .thanks-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 40px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .services-cards-irregular {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }

    .experience-list {
        flex-direction: column;
    }

    .experience-item {
        width: 100%;
    }
}