:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3d6d;
    --accent-color: #4a90e2;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
}

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

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

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

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

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

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-medium);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

.split-left,
.split-right {
    flex: 1;
    padding: 80px 60px;
}

.split-left {
    background-color: var(--bg-white);
}

.split-right {
    background-color: var(--bg-light);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

.container-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

section {
    margin-bottom: 0;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text-dark);
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    color: var(--text-medium);
    font-size: 16px;
}

ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.trust-indicators {
    background-color: var(--bg-white);
}

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

.trust-item {
    padding: 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.problem-section {
    background-color: var(--bg-light);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 48px;
}

.problem-item {
    display: flex;
    gap: 48px;
    align-items: center;
}

.problem-item.reverse {
    flex-direction: row-reverse;
}

.problem-visual {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.problem-text {
    flex: 1;
}

.solution-reveal {
    background-color: var(--bg-white);
}

.visual-bg {
    background-color: var(--border-color);
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-pad {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefit-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.services-showcase {
    background-color: var(--bg-light);
    padding: 80px 60px;
}

.services-showcase h2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 24px;
    font-size: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.contact-form-section {
    background-color: var(--bg-white);
}

.form-container {
    padding-right: 80px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

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

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: -8px;
}

.info-panel {
    background-color: var(--bg-light);
}

.process-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
}

.process-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.security-note {
    margin-top: 32px;
    padding: 20px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.security-note p {
    margin-bottom: 0;
    font-size: 14px;
}

.testimonials-inline {
    background-color: var(--bg-light);
    padding: 80px 60px;
}

.testimonials-inline h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-row {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 14px;
}

.final-cta-split {
    background-color: var(--bg-white);
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-visual {
    padding: 0;
    background-color: var(--border-color);
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-column p {
    color: #a0a0a0;
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    color: #808080;
    font-size: 13px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #707070;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    color: var(--bg-white);
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 14px;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
    background-color: var(--bg-light);
}

.story-section {
    padding: 80px 60px;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

.values-split {
    background-color: var(--bg-light);
}

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

.value-item {
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
}

.team-approach {
    background-color: var(--bg-white);
    padding: 80px 60px;
}

.team-approach h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.approach-visual {
    background-color: var(--border-color);
    height: 240px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-card h3 {
    padding: 24px 24px 0;
}

.approach-card p {
    padding: 0 24px 24px;
    margin-bottom: 0;
}

.technology-section {
    background-color: var(--bg-white);
}

.cta-about {
    background-color: var(--bg-light);
    padding: 80px 60px;
}

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

.cta-content-centered h2 {
    margin-bottom: 20px;
}

.cta-content-centered p {
    margin-bottom: 32px;
}

.services-hero {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-detail {
    padding: 80px 60px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.featured-service {
    background-color: var(--bg-light);
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-info {
    flex: 1;
    position: relative;
}

.service-info .badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

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

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.comparison-section {
    background-color: var(--bg-light);
    padding: 60px;
}

.comparison-note {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 0;
}

.cta-services {
    background-color: var(--bg-white);
    padding: 80px 60px;
}

.contact-hero {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-main {
    background-color: var(--bg-white);
}

.contact-info-panel {
    background-color: var(--bg-light);
}

.info-block {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.support-info,
.legal-info {
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.contact-visual-section {
    background-color: var(--bg-white);
}

.visual-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    background-color: var(--border-color);
}

.visual-caption {
    background-color: var(--bg-light);
    padding: 16px;
    text-align: center;
}

.visual-caption p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-medium);
}

.additional-info {
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.additional-info h3 {
    margin-bottom: 20px;
}

.additional-info ul {
    list-style: none;
    padding-left: 0;
}

.additional-info li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.additional-info li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.location-section {
    background-color: var(--bg-light);
    padding: 60px;
}

.location-details {
    max-width: 900px;
    margin: 0 auto;
}

.faq-contact {
    background-color: var(--bg-white);
    padding: 80px 60px;
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 80px 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.selected-service-info {
    margin: 32px 0;
}

.service-confirmation {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
}

.service-confirmation strong {
    color: var(--primary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    margin-bottom: 0;
    font-size: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.contact-reminder {
    margin-top: 60px;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.contact-reminder p {
    margin-bottom: 8px;
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    margin: 24px 0 16px;
}

.legal-section ul {
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .container-split,
    .hero-split,
    .about-hero-split,
    .service-split {
        flex-direction: column;
    }

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

    .split-left,
    .split-right,
    .hero-content,
    .hero-visual {
        padding: 60px 40px;
    }

    .problem-item,
    .problem-item.reverse {
        flex-direction: column;
    }

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

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

    .services-grid,
    .approach-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .approach-card,
    .faq-item {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

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

    .form-container {
        padding-right: 0;
    }

    .container-wide,
    .container-narrow,
    .split-left,
    .split-right {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content,
    .hero-visual {
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .services-showcase,
    .testimonials-inline,
    .team-approach,
    .contact-hero,
    .faq-contact,
    .cta-about,
    .cta-services {
        padding: 40px 24px;
    }
}