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

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

.main-nav {
    background: #1a1a2e;
    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: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-asymmetric {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.intro-column-narrow {
    flex: 0.4;
}

.intro-column-wide {
    flex: 0.6;
}

.intro-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.intro-asymmetric p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.large-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
}

.services-grid {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-select {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-select:hover {
    background: #5568d3;
}

.trust-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.trust-left {
    flex: 1;
}

.trust-right {
    flex: 1;
}

.trust-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.trust-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.trust-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.methodology-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
    color: #ffffff;
}

.method-header {
    text-align: center;
    margin-bottom: 4rem;
}

.method-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

.method-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.method-item {
    flex: 1;
    padding: 2rem;
}

.method-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.method-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.method-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.form-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 0.4;
}

.form-wrapper {
    flex: 0.6;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    color: #667eea;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    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: #667eea;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.testimonials-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-cta-sticky {
    background: #667eea;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-cta-sticky:hover {
    background: #5568d3;
}

.main-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #667eea;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #ffffff;
    font-size: 1rem;
    flex: 1;
}

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

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

.btn-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.team-intro p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #4a5568;
}

.approach-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.approach-left {
    flex: 1;
}

.approach-right {
    flex: 1;
}

.approach-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.approach-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.approach-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.experience-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.experience-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exp-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.exp-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.exp-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
}

.exp-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section-inline {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-left {
    flex: 0.45;
}

.service-detail-right {
    flex: 0.55;
}

.service-detail-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-intro {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-includes ul {
    margin-bottom: 2rem;
}

.service-includes ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-price-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.packages-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.packages-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.packages-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #4a5568;
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.package-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.package-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.package-card > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.package-price {
    margin: 2rem 0;
}

.price-old {
    display: block;
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.savings {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
}

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

.form-container-centered h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.contact-info-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-info-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-card a {
    color: #667eea;
    text-decoration: none;
}

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

.contact-map-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 6rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #4a5568;
}

.map-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: #999;
}

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

.contact-text-block {
    flex: 1;
}

.contact-process {
    flex: 1;
}

.contact-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact-text-block p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-process h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

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

.step-number {
    background: #667eea;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step p {
    font-size: 1.05rem;
    color: #4a5568;
}

.faq-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.last-updated {
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container a {
    color: #667eea;
    text-decoration: none;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.selected-service strong {
    color: #667eea;
}

.thanks-info {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: #667eea;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    padding: 1rem 2rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.step-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.step-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-single {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

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

    .section-container,
    .trust-content-split,
    .form-container-split,
    .story-container,
    .approach-split,
    .contact-additional {
        flex-direction: column;
    }

    .method-grid,
    .testimonials-grid,
    .packages-grid,
    .contact-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    body {
        padding-bottom: 80px;
    }
}