* {
    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: #2c2c2c;
    background: #fafafa;
}

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #134a5e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #8fc1d4;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #1a5f7a;
    color: #fff;
}

.btn-accept:hover {
    background: #134a5e;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 60px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-image-offset {
    flex: 1.2;
    position: relative;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a5f7a;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #134a5e;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background: #1a5f7a;
    color: #fff;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.text-column-left {
    flex: 1;
    padding-right: 40px;
}

.text-column-left h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.text-column-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.image-overlap {
    flex: 0.8;
    position: relative;
    margin-top: -60px;
}

.image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-stacked {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-bottom: 80px;
    padding-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 19px;
    color: #555;
}

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

.service-card-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #444;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a5f7a;
    color: #fff;
}

.testimonial-offset {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.quote-block {
    flex: 1;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.quote-block blockquote p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
}

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

.cta-section-diagonal {
    background: linear-gradient(135deg, #1a5f7a 0%, #134a5e 100%);
    padding: 100px 40px;
    margin: 140px 0;
    transform: skewY(-2deg);
}

.cta-content {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.form-section-offset {
    max-width: 700px;
    margin: 120px auto 120px 200px;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #134a5e;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 30px 40px;
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background: #2c2c2c;
    color: #fff;
    padding: 80px 40px 40px;
    margin-top: 140px;
}

.footer-asymmetric {
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.about-hero-offset {
    max-width: 1200px;
    margin: 140px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1.3;
    padding-top: 60px;
}

.about-text-primary h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text-primary p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}

.about-image-shift {
    flex: 1;
    margin-top: 40px;
}

.about-image-shift img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.philosophy-block {
    max-width: 900px;
    margin: 120px auto 120px 150px;
    padding: 0 40px;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.team-offset {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-offset h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 60px;
}

.team-member {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.team-member p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.values-asymmetric {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-block {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-left: 0;
}

.value-block:nth-child(2) {
    margin-left: 120px;
}

.value-block:nth-child(3) {
    margin-left: 60px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.cta-inline {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
}

.cta-inline a {
    font-weight: 600;
}

.services-hero {
    max-width: 900px;
    margin: 140px auto 100px;
    padding: 0 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    color: #555;
}

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

.service-detail-card {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

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

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-large {
    font-size: 38px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
}

.service-cta-offset {
    max-width: 800px;
    margin: 120px auto 120px 200px;
    padding: 0 40px;
    text-align: center;
}

.service-cta-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-cta-offset p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.contact-hero-offset {
    max-width: 800px;
    margin: 140px auto 80px 180px;
    padding: 0 40px;
}

.contact-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-info-asymmetric {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-block h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #f9f9f9;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

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

.contact-note {
    max-width: 800px;
    margin: 80px auto;
    padding: 30px 40px;
    background: #f0f8ff;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
}

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

.thanks-section {
    max-width: 800px;
    margin: 180px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.legal-content {
    max-width: 900px;
    margin: 140px auto 100px;
    padding: 0 40px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        transform: none;
        border-radius: 0;
        margin-bottom: 20px;
    }

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

    .hero-offset,
    .intro-asymmetric,
    .service-card-asymmetric,
    .about-hero-offset,
    .service-detail-card,
    .testimonial-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .section-header-offset,
    .philosophy-block,
    .service-cta-offset,
    .contact-hero-offset {
        margin-left: auto;
        padding-left: 20px;
    }

    .form-section-offset {
        margin-left: auto;
    }

    .value-block:nth-child(2),
    .value-block:nth-child(3) {
        margin-left: 0;
    }

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

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