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

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.intro-left-visual {
    flex: 1;
    background: #dbeafe;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-left-visual img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.intro-right-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 50px;
}

.services-header-left h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #111;
}

.services-header-left p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f3f4f6;
}

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

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 24px 20px;
    line-height: 1.6;
}

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

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    background: #f9fafb;
}

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

.form-left-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #111;
}

.form-left-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.form-right-container {
    flex: 1;
    padding: 60px;
    background: #ffffff;
}

.main-form {
    max-width: 500px;
}

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

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

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

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

.cta-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.trust-left-image {
    flex: 1;
    background: #dbeafe;
    position: relative;
}

.trust-visual-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

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

.trust-right-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 50px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background: #111;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #4b5563;
}

.page-header-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.header-left-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #111;
}

.header-left-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.header-right-visual {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.header-right-visual img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

.service-detail-left {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.service-detail-left img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

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

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.service-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

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

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

.services-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    background: #f9fafb;
    padding: 60px;
}

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

.cta-left-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111;
}

.cta-left-text p {
    font-size: 17px;
    color: #555;
}

.cta-right-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-hero-left {
    flex: 1;
    background: #dbeafe;
    overflow: hidden;
}

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

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

.about-hero-right h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #111;
    line-height: 1.2;
}

.about-hero-right p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.story-left-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111;
}

.story-left-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-right-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-box {
    background: #f9fafb;
    padding: 50px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

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

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.team-left-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111;
}

.team-left-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-right-image {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.team-right-image img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.approach-split {
    display: flex;
    gap: 60px;
}

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

.approach-left p,
.approach-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    background: #f9fafb;
    padding: 60px;
}

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

.about-cta-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111;
}

.about-cta-left p {
    font-size: 17px;
    color: #555;
}

.about-cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-header-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header-left h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #111;
}

.contact-header-left p {
    font-size: 18px;
    color: #666;
}

.contact-header-right {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact-header-right img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-main-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.contact-form-right {
    flex: 1;
}

.contact-form-right h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111;
}

.contact-faq-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-faq-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-main-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-detail-text {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-info {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 16px;
    color: #333;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #111;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 50px;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.step-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

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

.legal-container {
    background: #ffffff;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #111;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #111;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0 24px 24px;
}

.legal-container ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.legal-update {
    font-size: 14px;
    color: #999;
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .trust-split,
    .page-header-split,
    .service-detail-item,
    .about-hero-split,
    .about-story-split,
    .team-split,
    .approach-split,
    .about-cta-split,
    .services-cta-split,
    .contact-header-split,
    .contact-main-split {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left h1,
    .header-left-content h1,
    .about-hero-right h1 {
        font-size: 36px;
    }

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

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

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

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

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