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

.navbar {
    background: #ffffff;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.preview-split {
    display: flex;
    min-height: 500px;
}

.preview-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.preview-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.preview-right .btn-secondary {
    align-self: flex-start;
    margin-top: 1rem;
}

.preview-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.testimonials {
    padding: 5rem 2rem;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.author {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-split {
    display: flex;
    min-height: 500px;
    background: #ecf0f1;
}

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

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.form-left p {
    font-size: 1.1rem;
    color: #546e7a;
}

.form-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.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 {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

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

.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p {
    color: #b0bec5;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #b0bec5;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

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

.disclaimer {
    font-size: 0.85rem;
    color: #90a4ae;
    margin-top: 1rem;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

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

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story-split {
    display: flex;
    min-height: 500px;
    padding: 4rem 0;
}

.story-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.story-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
    background: #f8f9fa;
}

.team-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.team-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.values-content {
    padding: 4rem 2rem;
}

.values-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.commitment-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.commitment-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.commitment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.commitment-card p {
    color: #546e7a;
    line-height: 1.6;
}

.cta-about {
    background: #3498db;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.services-intro p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.7;
}

.service-item-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 3rem;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.service-image-right,
.service-image-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-services p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-info-left p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.detail-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

.contact-map-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 800px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .preview-split,
    .about-story-split,
    .team-split,
    .service-item-split,
    .contact-split,
    .form-section-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .values-grid,
    .testimonial-cards,
    .commitment-cards {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-content {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}