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

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

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

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

.hero-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    background-color: var(--primary-color);
    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-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.problem-insight {
    display: flex;
    min-height: 500px;
}

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

.insight-left {
    padding: 5rem 4rem;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.insight-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-right {
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.solution-modern {
    display: flex;
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

.solution-left {
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.solution-left > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.point-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.point-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.point-item p {
    color: var(--text-light);
}

.solution-right {
    padding: 0 4rem;
    display: flex;
    align-items: center;
}

.solution-right img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.btn-service-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.trust-builder {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

.trust-left {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonial-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

.trust-right {
    overflow: hidden;
}

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

.how-it-works {
    display: flex;
    min-height: 600px;
}

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

.works-right {
    overflow: hidden;
}

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

.works-left {
    padding: 5rem 4rem;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.process-step {
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}

.step-marker {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.benefits-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.benefits-split {
    display: flex;
    gap: 3rem;
}

.benefit-column {
    flex: 1;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
}

.benefit-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.faq-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
}

#selected-service-name {
    color: var(--primary-color);
}

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

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

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

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

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

.sticky-cta-button {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #d97706;
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

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

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

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

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story,
.mission-vision,
.team-approach {
    display: flex;
    min-height: 500px;
}

.story-left,
.story-right,
.mission-left,
.mission-right,
.approach-left,
.approach-right {
    flex: 1;
}

.story-left,
.mission-left,
.approach-left {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.mission-left {
    background-color: var(--bg-light);
}

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

.story-left h2,
.mission-left h2,
.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.story-left p,
.mission-left p,
.approach-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-list li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.story-right,
.mission-right,
.approach-right {
    overflow: hidden;
}

.story-right img,
.mission-right img,
.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision {
    background-color: var(--bg-light);
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.values-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.achievements {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.achievements-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.achievements-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    flex: 1 1 200px;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about .cta-content h2 {
    color: var(--bg-white);
}

.cta-about .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.services-intro {
    display: flex;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-right {
    padding: 0 4rem;
    display: flex;
    align-items: center;
}

.intro-right img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

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

.service-detail.featured {
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.detail-content,
.detail-image {
    flex: 1;
}

.detail-content-full {
    width: 100%;
}

.service-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge.premium {
    background-color: var(--accent-color);
}

.detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-content-full h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.detail-content-full .price-large {
    text-align: center;
    font-size: 3.2rem;
}

.price-save {
    font-size: 1.2rem;
    color: var(--success-color);
    font-weight: 600;
    margin-left: 1rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.detail-content-full .service-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.included-list {
    list-style: none;
    margin-bottom: 2rem;
}

.included-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.complete-package-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.package-section {
    flex: 1;
}

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

.btn-service-select.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.detail-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-comparison {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.comparison-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.comparison-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.recommended {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.comparison-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-guarantee {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.guarantee-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.guarantee-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-info,
.contact-image {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-image {
    display: flex;
    align-items: center;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    color: var(--bg-white);
    font-size: 1.1rem;
}

.next-steps {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.thanks-additional {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.additional-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.additional-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.additional-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.additional-links a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .problem-insight,
    .solution-modern,
    .trust-builder,
    .how-it-works,
    .about-story,
    .mission-vision,
    .team-approach,
    .services-intro,
    .contact-main {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .insight-left,
    .insight-right,
    .solution-left,
    .solution-right,
    .trust-left,
    .trust-right,
    .works-left,
    .works-right,
    .story-left,
    .story-right,
    .mission-left,
    .mission-right,
    .approach-left,
    .approach-right,
    .intro-left,
    .intro-right,
    .contact-info,
    .contact-image {
        min-height: 400px;
    }

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

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

    .benefits-split,
    .complete-package-grid,
    .comparison-grid,
    .guarantee-grid,
    .steps-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-intro {
        font-size: 1.1rem;
    }

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

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

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

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

    .cta-buttons,
    .thanks-actions,
    .additional-links {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}
