* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-right {
    background: #2c3e50;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.insight-split {
    display: flex;
    background: #34495e;
    color: #fff;
    padding: 5rem 2rem;
    gap: 4rem;
}

.insight-text,
.insight-image {
    flex: 1;
}

.insight-text {
    padding: 2rem;
}

.insight-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.insight-list {
    list-style: none;
    margin-bottom: 2rem;
}

.insight-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.insight-list li:before {
    content: "→";
    margin-right: 1rem;
    color: #3498db;
    font-weight: bold;
}

.insight-image {
    background: #2c3e50;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #fff;
    color: #34495e;
}

.services-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image,
.service-content {
    flex: 1;
}

.service-image {
    background: #ecf0f1;
    overflow: hidden;
}

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

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.trust-content,
.trust-testimonial {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
}

.trust-testimonial blockquote {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
}

.trust-testimonial blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.form-split {
    display: flex;
    background: #ecf0f1;
    margin: 6rem 0;
}

.form-image,
.form-container {
    flex: 1;
}

.form-image {
    background: #bdc3c7;
    overflow: hidden;
}

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

.form-container {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 2rem;
    align-items: center;
    gap: 4rem;
}

.final-text,
.final-action {
    flex: 1;
}

.final-text {
    padding-left: 4rem;
}

.final-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-text p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.final-action {
    text-align: center;
}

.cta-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-container .service-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.thanks-container .service-info strong {
    color: #2c3e50;
}

.contact-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info,
.contact-map-placeholder {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.info-item p {
    font-size: 1.1rem;
    color: #555;
}

.contact-map-placeholder {
    background: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .service-card,
    .trust-split,
    .form-split,
    .final-cta-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .final-text {
        padding-left: 0;
    }
}