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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.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: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    background: #f3f4f6;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.values-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
}

.values-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 350px;
    padding: 2.5rem;
    background: #ffffff;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #6b7280;
}

.services-preview-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.services-preview-left {
    flex: 1.2;
    padding: 5rem 6rem;
    background: #1f2937;
    color: #ffffff;
}

.services-preview-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.services-preview-left > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.service-list {
    margin-bottom: 2.5rem;
}

.service-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    margin-bottom: 1rem;
    opacity: 0.85;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #60a5fa;
}

.link-secondary {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.link-secondary:hover {
    border-bottom-color: #60a5fa;
}

.services-preview-right {
    flex: 1;
    padding: 5rem 4rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
}

.inquiry-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 0.875rem;
    margin-bottom: 1.5rem;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.testimonials-split {
    display: flex;
    align-items: stretch;
}

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

.testimonials-image {
    flex: 1;
    background: #e5e7eb;
}

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

.testimonials-content {
    flex: 1;
    padding: 5rem 6rem;
    background: #ffffff;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

blockquote {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #2563eb;
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
}

.cta-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.cta-left {
    flex: 1;
    background: #f3f4f6;
}

.cta-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.cta-right h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #60a5fa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.disclaimer-footer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #4b5563;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.content-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

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

.service-card-full {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.service-card-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 1;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

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

.service-card-content {
    flex: 1.5;
}

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

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

.service-card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.about-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.about-hero-left {
    flex: 1;
    background: #f3f4f6;
}

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

.about-hero-right {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.about-hero-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-hero-right p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

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

.contact-left {
    flex: 1;
    padding: 5rem 6rem;
    background: #1f2937;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

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

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #60a5fa;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-right {
    flex: 1;
    background: #f3f4f6;
}

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

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .testimonials-split,
    .cta-split,
    .about-hero-split,
    .contact-split,
    .service-card-full {
        flex-direction: column;
    }

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

    .service-card-full:nth-child(even) {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .services-preview-left,
    .services-preview-right,
    .testimonials-content,
    .cta-right,
    .about-hero-right,
    .contact-left {
        padding: 3rem 2rem;
    }

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

    .values-grid,
    .footer-container {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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