* {
    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-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #2c5282;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    background: #ffffff;
    color: #1a1a1a;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.content-flow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 32px;
}

.flow-block {
    margin-bottom: 80px;
}

.flow-narrow {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.flow-narrow h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.flow-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.flow-image-wide {
    width: 100%;
    margin: 80px 0;
    background-color: #f5f5f5;
}

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

.flow-offset-left {
    max-width: 600px;
    margin-left: 10%;
    margin-top: 80px;
}

.flow-offset-left h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.flow-offset-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.services-visual {
    background: #fafafa;
    padding: 120px 32px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #6a6a6a;
}

.service-cards-stacked {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    background-color: #e0e0e0;
}

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

.service-content {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.service-price {
    font-size: 28px;
    font-weight: 500;
    color: #2c5282;
    margin-bottom: 24px;
}

.service-select {
    background: #2c5282;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.service-select:hover {
    background: #1e3a5f;
}

.form-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 32px;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #2c5282;
    font-weight: 500;
}

.form-submit {
    width: 100%;
    background: #2c5282;
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #1e3a5f;
}

.trust-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 32px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

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

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 32px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 32px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #2c5282;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e3a5f;
}

.cookie-reject {
    background: #e0e0e0;
    color: #3a3a3a;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

@media (max-width: 968px) {
    .nav-floating {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
        top: 20px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 24px;
        top: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

    .service-image {
        min-height: 300px;
    }

    .trust-section {
        flex-direction: column;
        gap: 48px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

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

.page-hero {
    padding: 80px 32px;
    text-align: center;
    background: #fafafa;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
}

.about-block {
    width: 100%;
    margin-bottom: 80px;
    background-color: #e0e0e0;
}

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

.about-text-section {
    margin: 80px 0;
}

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

.about-text-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.about-image-offset {
    max-width: 700px;
    margin: 80px 0 80px auto;
    background-color: #e0e0e0;
}

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

.about-values {
    display: flex;
    gap: 40px;
    margin: 100px 0;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: #f8f8f8;
    border-left: 4px solid #2c5282;
}

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

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

.about-approach {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 100px 0;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.about-team {
    max-width: 800px;
    margin: 100px auto 0;
    text-align: center;
}

.about-team h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-team p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-page-content {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 32px;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 100px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-size: 20px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 500;
    color: #2c5282;
    margin: 32px 0 20px;
}

.services-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: #f8f8f8;
    border-left: 4px solid #2c5282;
}

.services-note h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.contact-page-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 32px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 80px 32px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.thanks-service-info {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-service-info strong {
    display: block;
    margin-bottom: 8px;
    color: #2c5282;
    font-size: 16px;
}

.thanks-cta {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 32px;
    transition: background 0.3s ease;
}

.thanks-cta:hover {
    background: #1e3a5f;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 32px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page .last-updated {
    font-size: 15px;
    color: #8a8a8a;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

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

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

@media (max-width: 968px) {
    .about-values {
        flex-direction: column;
        gap: 24px;
    }

    .about-approach {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card {
        flex-direction: column !important;
        gap: 32px;
    }

    .contact-page-content {
        flex-direction: column;
        gap: 48px;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .flow-narrow h2 {
        font-size: 32px;
    }

    .services-intro h2 {
        font-size: 36px;
    }

    .form-container h2 {
        font-size: 32px;
    }

    .service-content {
        padding: 40px 24px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .about-text-content h2,
    .approach-text h2,
    .about-team h2 {
        font-size: 28px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .thanks-container h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}