* {
    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: 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;
    gap: 2rem;
}

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

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

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

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

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

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

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

.nav-main {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    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-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    padding: 5rem 4rem;
    background: #fff;
}

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

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

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.services-showcase h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
}

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

.service-image {
    flex: 1;
    background: #dde3e9;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-card-split.reverse .service-info {
    background: #fff;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #1a1a1a;
}

.approach-left {
    flex: 1;
    padding: 5rem 4rem;
    color: #fff;
}

.approach-right {
    flex: 1;
    background: #2a2a2a;
}

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

.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.approach-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ddd;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ddd;
    font-size: 1.05rem;
    border-bottom: 1px solid #333;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

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

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

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

.footer-section ul li a:hover {
    color: #0066cc;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

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

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

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

.thanks-container .selected-service {
    font-weight: 700;
    color: #0066cc;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.about-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.about-text {
    flex: 1;
    padding: 3rem;
    background: #f8f9fa;
}

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

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

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

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.values-image {
    flex: 1;
    background: #dde3e9;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
    background: #fff;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

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

.services-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.contact-page h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

.info-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.info-item h3 {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

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

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

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

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .service-card-split,
    .about-content-split,
    .values-split {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}