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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.navbar {
    background: #ffffff;
    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: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #64748b;
    padding: 4px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

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

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

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

.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: #f8fafc;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    padding: 16px 36px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

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

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

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

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.vp-left {
    flex: 1;
    padding: 70px 60px;
    background: #ffffff;
}

.vp-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1e293b;
}

.vp-left p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.vp-right {
    flex: 1;
    background: #fef3c7;
}

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

.services-intro {
    padding: 80px 40px;
    background: #f1f5f9;
}

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

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

.services-header p {
    font-size: 19px;
    color: #64748b;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

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

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

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

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

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

.process-left {
    flex: 1;
    padding: 70px 60px;
    background: #ffffff;
}

.process-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1e293b;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2563eb;
}

.process-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.process-right {
    flex: 1;
    background: #dbeafe;
}

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

.form-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    transition: border 0.3s;
}

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

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

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

.btn-primary {
    padding: 12px 28px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

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

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

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2563eb;
}

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

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
}

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

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

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

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

.legal-container ul {
    margin: 16px 0 16px 30px;
    color: #64748b;
}

.legal-container ul li {
    margin-bottom: 8px;
}

.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #334155;
}

.info-block p {
    color: #64748b;
    margin-bottom: 6px;
}

.contact-image {
    flex: 1;
    background: #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-hero {
    padding: 80px 40px;
    background: #f8fafc;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

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

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

.services-list-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
}

.services-list-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1e293b;
    text-align: center;
}

.service-detail {
    background: #f8fafc;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    display: flex;
    gap: 40px;
}

.service-detail-text {
    flex: 2;
}

.service-detail-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-detail-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-detail-price {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-split,
    .value-proposition,
    .process-split,
    .split-form,
    .contact-split,
    .about-split,
    .service-detail {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
}