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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.intro-section {
    padding: 8rem 3rem;
    background: #f9f9f9;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.5px;
}

.insight-section {
    padding: 8rem 3rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.insight-block {
    flex: 1;
}

.insight-block h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.insight-block p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-wrapper img {
    width: 500px;
    height: 400px;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.problem-section {
    padding: 8rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.problem-container > p {
    font-size: 1.3rem;
    margin-bottom: 5rem;
    text-align: center;
    color: #ccc;
    line-height: 1.8;
}

.problem-points {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.point {
    flex: 1;
}

.point h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.point p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.7;
}

.image-full {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.approach-section {
    padding: 8rem 3rem;
}

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

.approach-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.approach-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefit-list {
    margin-top: 3rem;
    list-style: none;
}

.benefit-list li {
    font-size: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.services-preview {
    padding: 8rem 3rem;
    background: #f9f9f9;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 0;
    width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 2rem 1rem 2rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 2rem 1.5rem 2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
    margin: 2rem 2rem 1.5rem 2rem;
}

.btn-primary {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem 2rem;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.form-section {
    padding: 8rem 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #444;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #333;
}

.trust-section {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

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

.trust-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.trust-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.references {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.references h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.references p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.references a {
    color: #6699cc;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #444;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #333;
}

.btn-reject {
    background: #e0e0e0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #ccc;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.thanks-container p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.thanks-info p {
    color: #444;
    font-size: 1.1rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #333;
}

.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem 3rem;
    text-align: center;
    background: #f9f9f9;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #666;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.page-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem 0;
    letter-spacing: -1px;
}

.page-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem 0;
}

.page-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.page-content li {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-info {
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 4rem 0;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-item .price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .large-text {
        font-size: 1.8rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .content-wrapper img {
        width: 100%;
    }

    .problem-points {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}