* {
    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.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    transform: translateY(-3px);
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    background: linear-gradient(to bottom right, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding: 80px 8% 80px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
    max-width: 560px;
}

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

.cta-primary:hover {
    background: #2a5298;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(30px);
}

.trust-block-diagonal {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    align-items: center;
    background: #ffffff;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.trust-visual {
    flex: 0.8;
    position: relative;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

.insight-overlap {
    position: relative;
    padding: 120px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.insight-card-offset {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 700px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transform: translateX(60px);
}

.insight-card-offset h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-card-offset p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.insight-card-offset ul {
    list-style: none;
    margin-top: 25px;
}

.insight-card-offset ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.insight-card-offset ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.services-irregular {
    padding: 100px 8% 80px;
    background: #f8f9fa;
    position: relative;
}

.services-heading-rotated {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: left;
    transform: translateX(-20px);
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    justify-content: space-between;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 0 0 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.card-offset-1 {
    transform: translateY(20px);
}

.card-offset-2 {
    transform: translateY(-15px);
}

.card-offset-3 {
    transform: translateY(30px);
}

.card-offset-4 {
    transform: translateY(-10px);
}

.card-offset-5 {
    transform: translateY(15px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 25px 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1e3c72;
    margin: 15px 25px;
}

.select-service-btn {
    margin: 0 25px 30px;
    padding: 14px 28px;
    background: #1e3c72;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2a5298;
}

.form-container-diagonal {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: rotate(-1deg);
}

.form-container-diagonal h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.selected-service-display {
    background: #e7f3ff;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1e3c72;
    border-left: 4px solid #1e3c72;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn:hover {
    background: #2a5298;
}

.submit-btn:disabled {
    background: #adb5bd;
    cursor: not-allowed;
}

.testimonial-offset {
    padding: 80px 15%;
    background: linear-gradient(to right, #1e3c72 0%, #2a5298 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.testimonial-content {
    transform: skewY(2deg);
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    position: relative;
}

.testimonial-content cite {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-style: normal;
    color: #e9ecef;
}

.cta-creative {
    padding: 100px 8%;
    background: #f8f9fa;
    display: flex;
    justify-content: flex-end;
}

.cta-box-skewed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 8px;
    max-width: 650px;
    color: #ffffff;
    transform: translateX(-40px);
}

.cta-box-skewed h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box-skewed p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 8% 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    flex: 0 0 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    font-size: 13px;
    line-height: 1.6;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 8%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
}

.cookie-content a {
    color: #1e3c72;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #2a5298;
}

.cookie-btn.reject {
    background: #e9ecef;
    color: #495057;
}

.cookie-btn.reject:hover {
    background: #dee2e6;
}

.page-hero-minimal {
    padding: 100px 8% 60px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-flow {
    padding: 80px 8%;
}

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

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 0 0 45%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background-color: #e9ecef;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.story-text ul {
    list-style: none;
    margin-top: 20px;
}

.story-text ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.story-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3c72;
    font-weight: bold;
    font-size: 20px;
}

.values-offset {
    padding: 80px 8%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.values-offset h2 {
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.cta-simple {
    padding: 100px 8%;
    text-align: center;
    background: #f8f9fa;
}

.cta-simple h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-simple p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-secondary-outline {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #1e3c72;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1e3c72;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary-outline:hover {
    background: #1e3c72;
    color: #ffffff;
}

.services-detail-section {
    padding: 80px 8%;
}

.service-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.service-detail-card {
    flex: 0 0 calc(50% - 25px);
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.service-detail-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

.service-detail-card .price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin-top: 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 8%;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e3c72;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

.thanks-service-info {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #1e3c72;
}

.thanks-service-info strong {
    color: #1e3c72;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 38px;
    }

    .service-cards-asymmetric {
        flex-direction: column;
    }

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

    .trust-block-diagonal {
        flex-direction: column;
    }

    .footer-asymmetric {
        flex-direction: column;
    }

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

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .story-block img {
        flex: 0 0 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .service-detail-card {
        flex: 0 0 100%;
    }

    .contact-layout {
        flex-direction: column;
    }
}