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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-right a:hover,
.nav-right a.active {
    color: var(--secondary-color);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-color);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    padding: 60px 80px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

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

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

.btn-primary,
.btn-secondary,
.btn-primary-lg {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-lg {
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary-lg:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.trust-indicators {
    background: var(--bg-light);
    padding: 60px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-light);
}

.split-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.split-left-content,
.split-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left-content {
    padding: 80px 60px;
}

.split-right-content {
    padding: 80px 60px;
}

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

.split-left-content h2,
.split-right-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.split-left-content p,
.split-right-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-highlights {
    margin: 32px 0;
}

.highlight-item {
    margin-bottom: 24px;
}

.highlight-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-list {
    margin: 24px 0;
    padding-left: 24px;
}

.benefits-list li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.services-preview {
    background: var(--bg-white);
}

.why-choose {
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 48px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.pricing-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-select-service.small {
    padding: 10px 20px;
    font-size: 14px;
    width: auto;
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-form-container {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.final-trust {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.trust-content-center h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-content-center p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.page-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-intro {
    background: var(--bg-white);
}

.team-intro {
    background: var(--bg-light);
}

.milestones {
    padding: 80px 0;
    background: var(--bg-white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
}

.commitment {
    background: var(--bg-light);
}

.cta-simple {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: var(--bg-light);
}

.service-intro {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-features-detailed h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-features-detailed ul {
    padding-left: 24px;
    margin-bottom: 32px;
}

.service-features-detailed ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.pricing-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.comparison-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    background: var(--bg-light);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 16px;
    font-size: 16px;
}

.contact-split {
    padding: 60px 0;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-info-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-info-box p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-detail {
    margin-top: 20px;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.9);
    color: white;
    padding: 24px;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-quick {
    font-size: 16px;
    color: var(--text-light);
}

.next-steps-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.next-steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.step-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-left-content,
    .split-right-content {
        padding: 40px 30px;
    }

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

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

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-right.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 28px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 24px;
    }

    .nav-split {
        padding: 15px 20px;
    }

    .values-grid {
        flex-direction: column;
    }

    .faq-grid {
        flex-direction: column;
    }

    .next-steps-grid {
        flex-direction: column;
    }
}