* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

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

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7f;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #2c5f7f 0%, #4a8fb5 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2c5f7f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f7f;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.problem-section {
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
}

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

.split-content {
    padding: 4rem;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c5f7f;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.insight-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.services-preview {
    padding: 6rem 2rem;
    background: #fff;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c5f7f;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    color: #2c5f7f;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7f;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2c5f7f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #1f4560;
}

.approach-section {
    padding: 6rem 2rem;
    background: #f4f4f4;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f7f;
}

.approach-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    text-align: center;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7f;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.approach-item p {
    color: #666;
    line-height: 1.7;
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

.container-small {
    max-width: 700px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f7f;
    text-align: center;
}

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

.contact-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c5f7f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #f9f9f9;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #2c5f7f;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    font-weight: 700;
    color: #2c5f7f;
    font-size: 1.3rem;
    margin: 2rem 0;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c5f7f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.content-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

.content-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c5f7f;
}

.content-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c5f7f;
}

.content-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.content-container ul,
.content-container ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .split-content {
        padding: 2rem;
    }

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

    .service-card {
        max-width: 100%;
    }

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

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

    .form-row {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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