* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    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: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-left {
    display: flex;
    align-items: center;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

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

.intro-left {
    flex: 1;
    overflow: hidden;
}

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

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

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

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.insight-block {
    padding: 5rem 5%;
    background-color: #0a0a0a;
    color: #ffffff;
}

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

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
}

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

.services-left {
    flex: 0.8;
    padding: 4rem 5%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.services-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.services-right {
    flex: 1.2;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-item {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

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

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

.process-block {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.process-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-left: 4px solid #0066cc;
    background-color: #f9f9f9;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.testimonial-split {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonial-container blockquote {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #0066cc;
}

.testimonial-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #aaa;
}

.form-section {
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
    align-items: stretch;
}

.form-left {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.form-right {
    flex: 1.3;
    background-color: #ffffff;
    padding: 3rem;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    color: #666;
}

.btn-submit {
    padding: 1rem 3rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 3rem;
}

.cta-left {
    flex: 1.2;
}

.cta-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.cta-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 3rem 5%;
    background-color: #2c2c2c;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.disclaimer {
    padding: 2rem 5%;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.about-hero-left {
    flex: 1;
    padding: 4rem 5%;
}

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

.about-hero-left p {
    font-size: 1.15rem;
    color: #444;
}

.about-hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.about-content-split.reverse {
    flex-direction: row-reverse;
}

.about-content-left {
    flex: 1;
    overflow: hidden;
}

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

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

.about-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.philosophy-block {
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

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

.philosophy-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 4px solid #0066cc;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

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

.team-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.team-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.team-right {
    flex: 1;
    overflow: hidden;
}

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

.approach-block {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.approach-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-bottom: 3px solid #0066cc;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

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

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

.values-left {
    flex: 1;
    overflow: hidden;
}

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

.values-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.values-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.services-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f5f5f5;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    padding: 4rem 0;
}

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

.service-detail-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-detail-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.service-price-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
}

.service-detail-right {
    flex: 1;
    overflow: hidden;
}

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

.service-comparison {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

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

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

.comparison-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.cta-services {
    padding: 5rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.contact-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f5f5f5;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #444;
}

.contact-split {
    display: flex;
    align-items: stretch;
    padding: 4rem 0;
}

.contact-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.contact-block em {
    font-size: 0.95rem;
    color: #666;
}

.contact-right {
    flex: 1;
    overflow: hidden;
}

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

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

.contact-guidance-split.reverse {
    flex-direction: row-reverse;
}

.guidance-left {
    flex: 1;
    overflow: hidden;
}

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

.guidance-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guidance-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.guidance-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.location-info {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.location-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

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

.thanks-container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #444;
}

.service-confirmation {
    padding: 2rem;
    background-color: #f5f5f5;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

.service-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #444;
}

.thanks-content {
    text-align: left;
    margin: 3rem 0;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.legal-content {
    padding: 5rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #444;
}

.legal-content em {
    color: #666;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-split,
    .final-cta-split,
    .about-hero-split,
    .about-content-split,
    .team-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .contact-guidance-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-content-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse,
    .contact-guidance-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .services-left,
    .services-right,
    .cta-left,
    .cta-right {
        min-height: 400px;
    }

    .hero-left h1,
    .about-hero-left h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-container h1 {
        font-size: 2.2rem;
    }

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-split {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

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

    .testimonial-container {
        flex-direction: column;
    }
}