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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
}

.hero-content p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
    border-radius: 12px;
}

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

.intro-content {
    flex: 1;
    padding: 40px 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.intro-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

.services-preview {
    background-color: #f8fafc;
    padding: 100px 60px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1e293b;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 24px;
}

.select-service {
    margin: 0 24px 24px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.form-info p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

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

.benefits-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 18px;
    color: #475569;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 40px 60px 40px 0;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.trust-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

.trust-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 60px 24px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    color: #94a3b8;
}

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

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

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #334155;
    border-radius: 8px;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    color: #94a3b8;
}

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

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

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

.cookie-accept {
    background-color: #10b981;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-accept:hover {
    background-color: #059669;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-reject:hover {
    background-color: #ffffff;
    color: #1e293b;
}

.page-hero {
    min-height: 400px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 80px 60px;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 22px;
    opacity: 0.9;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

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

.service-detail-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #334155;
}

.service-detail-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

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

.service-detail-content ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
    line-height: 1;
}

.service-price-box {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #64748b;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-section .cta-primary:hover {
    background-color: #f1f5f9;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    padding: 40px 60px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

.values-section {
    background-color: #f8fafc;
    padding: 100px 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.value-card p {
    font-size: 16px;
    color: #64748b;
}

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.expertise-split.reverse {
    flex-direction: row-reverse;
}

.expertise-content {
    flex: 1;
    padding: 40px 60px 40px 0;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.expertise-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #334155;
}

.expertise-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 16px;
}

.expertise-content ul {
    list-style: none;
}

.expertise-content ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.expertise-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.expertise-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-section {
    background-color: #f8fafc;
    padding: 100px 60px;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1e293b;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(25% - 32px);
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
    opacity: 0.2;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.step-item p {
    font-size: 15px;
    color: #64748b;
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.contact-info p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.contact-map {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-additional {
    flex: 1;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-additional h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.contact-additional h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #334155;
}

.contact-additional p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
}

.contact-additional ul {
    list-style: none;
    margin-bottom: 24px;
}

.contact-additional ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.contact-additional ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
    line-height: 1;
}

.availability-note {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.availability-note p {
    margin: 0;
    font-size: 14px;
    color: #1e40af;
}

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    gap: 60px;
}

.thanks-content {
    flex: 1.5;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-message {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #475569;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.next-steps ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1e293b;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #334155;
}

.legal-container h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #475569;
}

.legal-container p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-container ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.legal-container a {
    color: #2563eb;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .expertise-split,
    .service-detail-item,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .intro-split.reverse,
    .expertise-split.reverse,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .section-header h2,
    .values-section h2,
    .approach-section h2,
    .cta-content h2 {
        font-size: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}