* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2d3748;
}

.ad-notice {
    font-size: 12px;
    color: #718096;
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.hero-text .lead {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #f0f0f0;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.features-split {
    padding: 80px 0;
}

.feature-block {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.feature-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

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

.services-grid {
    padding: 100px 0;
    background: #f7fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 18px;
    color: #718096;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #5568d3;
}

.process-split {
    padding: 80px 0;
}

.process-block {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

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

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #718096;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 32px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #5568d3;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f7fafc;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
}

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

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

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-primary {
    background: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2d3748;
}

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-image-container {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

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

.values-section {
    padding: 80px 0;
    background: #f7fafc;
}

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.contact-info-card strong {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.legal-page {
    padding: 120px 0 80px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-split,
    .feature-block,
    .process-block,
    .about-split,
    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1,
    .about-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }
}