* {
    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;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

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

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.story-flow {
    padding: 120px 20px;
    background: #fff;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.7;
}

.story-intro {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.visual-break {
    width: 100%;
    height: 600px;
    background-color: #2c2c2c;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-block {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.insight-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.insight-content p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.insight-visual {
    margin: 60px 0;
    background-color: #1a1a1a;
}

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

.services-visual {
    padding: 120px 20px;
    background: #fff;
}

.services-visual h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 550px;
    min-width: 300px;
    background: #fafafa;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.service-image-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #2c2c2c;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.select-service {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-visual {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

.testimonial-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrap blockquote {
    border: none;
}

.testimonial-wrap p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-wrap cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.7;
}

.form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.selected-service-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.trust-building {
    padding: 100px 20px;
    background: #fff;
}

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

.trust-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.trust-image {
    width: 100%;
    background-color: #2c2c2c;
}

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

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #fff;
    color: #2c2c2c;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f5f5;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.btn-home {
    display: inline-block;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #1a1a1a;
}

.page-container {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

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

.page-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-info {
    background: #f5f5f5;
    padding: 40px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info strong {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        top: 10px;
        padding: 20px;
    }

    .ad-disclosure {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 10px;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

    .story-narrow,
    .story-intro {
        font-size: 18px;
    }

    .insight-content h2,
    .trust-content h2 {
        font-size: 32px;
    }

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

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

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

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