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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.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;
    margin: 0;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: #555;
    color: #fff;
}

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

.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    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: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #4a9eff;
}

.ad-label {
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 12px;
    background: #f9f9f9;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    background: #4a9eff;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #357abd;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-section {
    padding: 80px 40px;
    background: #fff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.text-block {
    flex: 1;
}

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

.text-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    padding: 80px 40px;
    background: #f5f5f5;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #4a9eff;
    margin: 0 24px 16px 24px;
}

.select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.select-service:hover {
    background: #333;
}

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

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.service-display {
    background: #e8f4f8;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.service-display.show {
    display: block;
}

.service-display strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.service-display span {
    font-size: 16px;
    color: #555;
}

.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 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.btn-submit {
    background: #4a9eff;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #357abd;
}

.checklist {
    list-style: none;
    padding: 0;
}

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

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
    font-size: 18px;
}

.trust-section {
    padding: 80px 40px;
    background: #fafafa;
}

.link-arrow {
    display: inline-block;
    color: #4a9eff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    text-decoration: underline;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px 40px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

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

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

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

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-container .selected-service-info {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-container .selected-service-info strong {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 24px;
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
}

.thanks-container .back-link:hover {
    text-decoration: underline;
}

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #aaa;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #333;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-info {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

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

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .service-card {
        width: 100%;
    }

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

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