* {
    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: #2c3e50;
    background: #ffffff;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #3498db;
    color: white;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-disclosure {
    background: #f8f9fa;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.split-reverse {
    display: flex;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #d5dce0;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
}

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
    transform: translateX(5px);
}

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

.services-grid {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 1.15rem;
    color: #666;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    background: #e8ecef;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.8rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    padding: 0 1.5rem 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.selected-service {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.split-centered {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.centered-content {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.features-dual {
    display: flex;
    gap: 4rem;
}

.feature-block {
    flex: 1;
}

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

.feature-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.testimonial-split {
    display: flex;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    background: #2c3e50;
    color: white;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-image {
    flex: 1;
    background: #d5dce0;
}

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

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

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

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background: #2c3e50;
    color: white;
    padding: 5rem 4rem;
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #3498db;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #d5dce0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

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

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page .updated {
    color: #999;
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-box a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.thanks-box a:hover {
    transform: scale(1.05);
}

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

    .hero-left,
    .split-content,
    .testimonial-content,
    .contact-info {
        padding: 3rem 2rem;
    }

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

    .features-dual {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        display: none;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}