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

:root {
    --primary-dark: #0a0f1a;
    --secondary-dark: #1a2332;
    --accent-blue: #2563eb;
    --accent-light: #3b82f6;
    --text-light: #e5e7eb;
    --text-dark: #1f2937;
    --border-color: #374151;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.navigation {
    background-color: var(--primary-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
    color: var(--accent-light);
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--secondary-dark);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

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

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

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

.hero-visual {
    flex: 1;
    position: relative;
    background: linear-gradient(45deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-visual {
    flex: 1;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.visual-block {
    width: 70%;
    height: 70%;
    background: linear-gradient(45deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.trust-section {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.trust-text {
    flex: 1.2;
}

.trust-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.trust-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

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

.trust-visual {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #4b5563;
    border-left: 5px solid var(--accent-blue);
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: white;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-content {
    flex: 1.3;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-dark);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
}

.problem-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.problem-item p {
    color: #6b7280;
    line-height: 1.7;
}

.problem-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, white 0%, #f9fafb 100%);
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.services-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.service-card.featured {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--accent-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 120px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.service-select {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.how-it-works {
    padding: 5rem 2rem;
}

.split-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.works-content {
    flex: 1.3;
}

.works-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.step p {
    color: #9ca3af;
    line-height: 1.7;
}

.works-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.info-box p {
    color: #d1d5db;
    line-height: 1.8;
}

.social-proof {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.proof-container h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-blue);
}

.testimonial-card p {
    font-style: italic;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.urgency-section {
    padding: 5rem 2rem;
}

.split-accent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.urgency-content {
    flex: 1.2;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.urgency-content p {
    font-size: 1.15rem;
    color: #78350f;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.urgency-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.counter-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.counter-box p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.form-intro p {
    font-size: 1.1rem;
    color: #d1d5db;
}

.main-form {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #d1d5db;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #d1d5db;
}

.about-intro {
    padding: 5rem 2rem;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.about-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-highlight {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.stat-highlight .stat {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

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

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.approach-item p {
    color: #6b7280;
    line-height: 1.7;
}

.expertise-section {
    padding: 5rem 2rem;
}

.expertise-content {
    flex: 1.2;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.expertise-content p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-blue);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: white;
}

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-blue);
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.value-card p {
    color: #6b7280;
    line-height: 1.8;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.services-overview {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.overview-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.service-detail-content {
    flex: 1.3;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-dark);
}

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

.service-detail-content ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

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

.detail-box {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-blue);
}

.detail-box.highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-blue);
}

.detail-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.detail-box p {
    color: #6b7280;
    line-height: 1.7;
}

.custom-solution {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

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

.custom-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.custom-container p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-blue);
}

.contact-item p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

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

.note {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-top: 0.8rem;
    font-style: italic;
}

.note-small {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 1rem;
    font-style: italic;
}

.security-note {
    background-color: #fef3c7;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--warning-orange);
}

.security-note h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #78350f;
}

.security-note p {
    color: #92400e;
    line-height: 1.7;
}

.contact-cta {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-box strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.meeting-info {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.meeting-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.meeting-info p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.meeting-info ul {
    list-style: none;
    margin: 1rem 0;
}

.meeting-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.meeting-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.location-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.location-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.location-container p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.map-placeholder {
    background-color: #e5e7eb;
    padding: 5rem 2rem;
    border-radius: 15px;
    color: #6b7280;
    font-size: 1.2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #d1fae5;
}

.thanks-details {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

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

.thanks-info {
    flex: 1.5;
}

.thanks-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.time {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #dbeafe;
    color: var(--accent-blue);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-confirm {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 5px solid var(--accent-blue);
    display: none;
}

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

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.service-note {
    color: #6b7280;
    line-height: 1.7;
}

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-reminder {
    background-color: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning-orange);
}

.security-reminder h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #78350f;
}

.security-reminder p {
    color: #92400e;
    line-height: 1.7;
}

.urgency-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.urgency-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.urgency-box p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgent-link {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
}

.urgent-link:hover {
    text-decoration: underline;
}

.resources-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.resources-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.resources-box ul {
    list-style: none;
}

.resources-box ul li {
    margin-bottom: 0.8rem;
}

.resources-box ul li a {
    color: var(--accent-blue);
    text-decoration: none;
}

.resources-box ul li a:hover {
    text-decoration: underline;
}

.reassurance-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.reassurance-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.reassurance-container p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.8;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: white;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.update-date {
    color: #9ca3af;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.legal-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--accent-blue);
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    color: #6b7280;
}

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .split-layout,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .intro-split.reverse {
        flex-direction: column;
    }

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

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

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

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .intro-content h2,
    .problem-content h2 {
        font-size: 1.8rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .main-form {
        padding: 2rem;
    }
}