* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #64748b;
    padding: 0.4rem 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f8fafc;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-left p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background: #94a3b8;
}

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

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.intro-left {
    flex: 1;
    background: #cbd5e1;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 3rem 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-right p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

.approach-section {
    background: #f1f5f9;
    padding: 5rem 2rem;
}

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

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

.approach-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.approach-card p {
    color: #64748b;
    line-height: 1.7;
}

.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.benefits-left {
    flex: 1;
    padding: 3rem 4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-right {
    flex: 1;
    background: #cbd5e1;
}

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

.services-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: auto;
}

.form-section {
    background: #0f172a;
    padding: 5rem 2rem;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-left p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid #475569;
    border-radius: 4px;
    font-size: 1rem;
    background: #0f172a;
    color: #e2e8f0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

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

.disclaimer {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.95rem;
}

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

.cookie-content p {
    color: #cbd5e1;
    flex: 1;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: #475569;
    color: #ffffff;
}

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

.page-header {
    background: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #64748b;
}

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

.page-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.page-content li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #475569;
    margin-bottom: 0.8rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-detail h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 1rem;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
    background: #cbd5e1;
}

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

.about-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    background: #f1f5f9;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .form-split,
    .about-split {
        flex-direction: column;
    }

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

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

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

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

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