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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7ab5;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-reject:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--bg-light);
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    background: var(--bg-light);
}

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

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

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-grid {
    padding: 5rem 3rem;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.service-row-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.service-card {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

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

.form-content {
    flex: 1;
    padding: 4rem;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid var(--accent-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-image {
    flex: 1;
    background: var(--bg-light);
}

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

.trust-split {
    display: flex;
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.trust-text {
    flex: 1;
    padding-right: 3rem;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.trust-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.05rem;
    color: var(--text-light);
}

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 3rem 1rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background: var(--primary-color);
}

.page-hero-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
}

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

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

.page-hero-image {
    flex: 1;
    background: var(--bg-light);
}

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

.services-detail {
    padding: 3rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.cta-contact-split {
    display: flex;
    padding: 4rem 3rem;
    background: var(--bg-light);
    align-items: center;
}

.cta-contact-text {
    flex: 1;
    padding-right: 3rem;
}

.cta-contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-contact-text p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.cta-contact-button {
    flex: 1;
    text-align: center;
}

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

.about-hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.about-hero-image {
    flex: 1;
}

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

.about-story {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

.value-item {
    flex: 1;
    display: flex;
    align-items: center;
}

.value-content {
    padding: 3rem;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.value-image {
    flex: 1;
    background: var(--bg-light);
}

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

.team-section {
    padding: 5rem 3rem;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member span {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-split {
    display: flex;
    padding: 5rem 3rem;
    gap: 3rem;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.commitment-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-about {
    padding: 4rem 3rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--text-white);
}

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

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero {
    padding: 4rem 3rem;
    text-align: center;
    background: var(--bg-light);
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
    padding: 4rem;
    background: var(--bg-white);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
}

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

.reach-out {
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reach-out h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reach-out p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.reach-out a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-service {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service p {
    color: var(--text-white);
    margin: 0;
    opacity: 0.9;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.thanks-image {
    flex: 1;
    background: var(--bg-light);
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

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

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

    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .page-hero-split,
    .about-hero-split,
    .values-split,
    .commitment-split,
    .contact-split,
    .thanks-section,
    .cta-contact-split {
        flex-direction: column;
    }

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-columns {
        flex-direction: column;
    }

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