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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    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;
    min-width: 250px;
}

.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: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #0070f3;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0051cc;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #00bcd4;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav-main a:hover {
    color: #00bcd4;
}

.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;
    padding: 16px 40px;
    background: #00bcd4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0097a7;
    transform: translateY(-2px);
}

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.intro-right {
    flex: 1;
    background: #e8e8e8;
}

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

.services-grid {
    padding: 100px 60px;
    background: #ffffff;
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

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

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

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

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #00bcd4;
    margin: 0 24px 20px;
}

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

.btn-select-service:hover {
    background: #00bcd4;
}

.service-card.selected {
    border: 3px solid #00bcd4;
}

.form-split {
    display: flex;
    background: #f5f5f5;
    min-height: 600px;
}

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

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

.form-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #333;
}

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

.form-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 480px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #666;
}

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

.btn-submit:hover {
    background: #0097a7;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-left {
    flex: 1;
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.trust-right {
    flex: 1;
    background: #e8e8e8;
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00bcd4;
}

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

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00bcd4;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #00bcd4;
}

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

.thanks-content .service-reference {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 20px;
    margin: 24px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #00bcd4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #0097a7;
}

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

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
}

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

.page-content ul, .page-content ol {
    margin: 20px 0 20px 24px;
    color: #555;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
}

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

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

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

.contact-info .email-display {
    font-weight: 600;
    color: #00bcd4;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .hero-split, .intro-split, .form-split, .trust-split {
        flex-direction: column;
    }

    .hero-left, .intro-left, .form-left, .trust-left, .form-right {
        padding: 60px 30px;
    }

    .hero-right, .intro-right, .trust-right {
        min-height: 400px;
    }

    .services-container {
        padding: 0 20px;
    }

    .service-card {
        min-width: 100%;
    }

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