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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background: #ffffff;
    --background-light: #f7f7f7;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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(--background);
    overflow-x: hidden;
}

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: var(--background-light);
    padding: 60px 40px;
}

.hero-content {
    max-width: 550px;
}

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

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

.hero-right {
    background: var(--primary-color);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.cta-primary-large {
    padding: 18px 40px;
    font-size: 18px;
}

.trust-strip {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.trust-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

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

.intro-left,
.intro-right {
    flex: 1;
}

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

.intro-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.intro-content {
    max-width: 500px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.price-detail {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.testimonial-left,
.testimonial-right {
    flex: 1;
}

.testimonial-left {
    background: var(--background-light);
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.testimonial-content {
    max-width: 500px;
}

.quote-mark {
    font-size: 80px;
    color: var(--primary-color);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.testimonial-right {
    background: var(--secondary-color);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.why-section {
    padding: 80px 0;
    background: white;
}

.why-split {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.why-right {
    flex: 2;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.cta-center {
    text-align: center;
}

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

.form-split {
    display: flex;
    gap: 60px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-benefit svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.form-benefit span {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-final-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-white {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.page-hero-small {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero-small p {
    font-size: 16px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
    background: white;
}

.about-split {
    display: flex;
    gap: 60px;
}

.about-left,
.about-right {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-right p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.section-title-center {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.team-section {
    padding: 80px 0;
    background: white;
}

.team-split-reverse {
    display: flex;
    gap: 60px;
}

.team-left,
.team-right {
    flex: 1;
}

.team-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

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

.tech-intro {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.commitment-section {
    padding: 80px 0;
    background: white;
}

.commitment-split {
    display: flex;
    gap: 60px;
}

.commitment-left,
.commitment-right {
    flex: 1;
}

.commitment-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.commitment-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.commitment-right p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.commitment-list li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    color: var(--primary-color);
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-right p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-features ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-pricing-box {
    background: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-label {
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info-text p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--background-light);
    border-radius: 8px;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

.directions-section {
    padding: 60px 0;
    background: var(--background-light);
}

.directions-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.directions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.direction-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.direction-icon svg {
    width: 100%;
    height: 100%;
}

.direction-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 80px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.thanks-details {
    text-align: left;
    margin: 40px 0;
}

.thanks-detail-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.thanks-detail-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-steps {
    padding-left: 20px;
    margin: 0;
}

.thanks-steps li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-service-info {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.thanks-service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-name {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-contact-info {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.thanks-contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-contact-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

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

.next-steps-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.next-step-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.next-step-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-step-icon svg {
    width: 100%;
    height: 100%;
}

.next-step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.next-step-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-content strong {
    color: var(--text-dark);
}

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

.gdpr-table {
    margin: 30px 0;
    overflow-x: auto;
}

.gdpr-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-light);
    border-radius: 8px;
}

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

.gdpr-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.gdpr-table td {
    font-size: 14px;
    color: var(--text-light);
}

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

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

    .why-split,
    .form-split,
    .about-split,
    .team-split-reverse,
    .commitment-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 20px;
    }

    .nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

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

    .hero-content p {
        font-size: 16px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

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

    .trust-items {
        flex-direction: column;
        gap: 20px;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 25px;
    }
}
