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

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

.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

.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;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.split-intro-left {
    flex: 1;
    padding: 5rem 3rem;
}

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

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

.split-intro-right {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-block {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 2rem;
}

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

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

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

.insight-card {
    flex: 1;
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.problem-left {
    flex: 1;
    padding: 5rem 3rem;
    background: #f5f5f5;
}

.problem-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.problem-right {
    flex: 1;
    background-color: #ddd;
}

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

.testimonials-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background: #f9f9f9;
    padding: 2.5rem;
    border-left: 4px solid #0066cc;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-item {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-item p {
    padding: 0 1.5rem 1rem;
    color: #555;
}

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

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

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

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.form-left {
    flex: 1;
}

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

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

.form-right {
    flex: 1;
}

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

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

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

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

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

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

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a:hover {
    color: #0066cc;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.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.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #555;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.cookie-banner.hidden {
    display: none;
}

.about-hero {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

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

.about-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.about-right {
    flex: 1;
    padding: 5rem 3rem;
}

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

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

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

.team-right {
    flex: 1;
    padding: 5rem 3rem;
    background: #f5f5f5;
}

.team-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.team-left {
    flex: 1;
    background-color: #ddd;
}

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

.mission-section {
    padding: 5rem 2rem;
    background: #0066cc;
    color: #fff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.services-hero {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.3rem;
    color: #555;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    margin: 4rem 0;
}

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

.service-detail-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-detail-right {
    flex: 1;
    padding: 3rem;
}

.service-detail-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.service-detail-right ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-right ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

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

.contact-hero {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.3rem;
    color: #555;
}

.contact-main {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-item {
    margin-bottom: 3rem;
}

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

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e8e8e8;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.thanks-service p {
    margin: 0;
    font-size: 1.1rem;
}

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

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

.legal-page {
    padding: 5rem 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

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

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

    .insight-grid,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-left h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
}