* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    flex: 1;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 1rem;
}

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

.values-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
}

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

.value-card p {
    color: #444;
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: stretch;
}

.services-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #444;
    margin-bottom: 1rem;
}

.service-item .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.services-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.process-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

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

.step p {
    color: #444;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1a1a1a;
    border-left: 4px solid #0066cc;
    padding-left: 2rem;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

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

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

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

.cta-container {
    background: #0066cc;
    color: #ffffff;
    padding: 4rem;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.inline-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ffffff;
    background: #ffffff;
    font-size: 1rem;
}

.cta-primary,
.cta-secondary,
.cta-submit,
.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #0066cc;
    color: #ffffff;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.cta-submit {
    background: #1a1a1a;
    color: #ffffff;
    width: 100%;
}

.cta-submit:hover {
    background: #000000;
}

.cta-service {
    background: #0066cc;
    color: #ffffff;
    margin-top: 1rem;
}

.cta-service:hover {
    background: #0052a3;
}

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

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

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

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

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

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

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

.disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.page-hero {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #444;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

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

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

.mission-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 1rem;
}

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

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #444;
}

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

.story-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.values-detailed {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-detailed h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-item {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.principle-item p {
    font-size: 1.125rem;
    color: #444;
}

.cta-simple {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-content {
    background: #f8f9fa;
    padding: 4rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
}

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

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-card.featured {
    background: #f8f9fa;
    padding: 3rem;
}

.service-detail-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    margin: 2rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    display: block;
}

.price-note {
    font-size: 0.875rem;
    color: #666;
}

.service-comparison {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-card p {
    color: #444;
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 2rem;
}

.services-form {
    background: #f8f9fa;
    padding: 3rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.services-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services-form input,
.services-form select,
.services-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    font-size: 1rem;
}

.services-form textarea {
    resize: vertical;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-block p {
    color: #444;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #0066cc;
}

.note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

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

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

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

.location-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
}

.location-content p {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.faq-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f8f9fa;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #444;
    line-height: 1.7;
}

.contact-cta {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-box {
    background: #0066cc;
    color: #ffffff;
    padding: 4rem;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin: 4rem 0;
}

.thanks-details h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-icon {
    min-width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #444;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    display: none;
}

.service-confirmation h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.while-waiting {
    background: #f8f9fa;
    padding: 3rem;
    margin: 3rem 0;
    text-align: left;
}

.while-waiting h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.preparation-list {
    list-style: none;
    margin: 1.5rem 0;
}

.preparation-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #444;
}

.preparation-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.update-date {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #0066cc;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .testimonial-split,
    .about-split,
    .mission-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero h1,
    .thanks-container h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .form-row {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .values-grid,
    .expertise-grid,
    .comparison-grid {
        flex-direction: column;
    }
}