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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #47a0d8;
    --accent-color: #e67e22;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --white: #ffffff;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

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

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
    color: var(--white);
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 20px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

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

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

.attention-hook {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.attention-hook h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.3;
}

.attention-hook p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.2;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

.highlight-text {
    background-color: #fff3cd;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    color: var(--dark-color);
}

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

.insight-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.insight-box {
    background-color: var(--white);
    padding: 40px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.insight-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.insight-source {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.story-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.story-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.trust-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
    opacity: 0.9;
}

.benefits-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-item {
    flex: 1 1 calc(25% - 25px);
    min-width: 220px;
    background-color: var(--light-color);
    padding: 30px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.5;
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.urgency-box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.pricing-section {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.pricing-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.pricing-card.featured-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.pricing-card.featured-service h3,
.pricing-card.featured-service .price,
.pricing-card.featured-service li {
    color: var(--white);
}

.service-badge,
.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 15px;
}

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

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    color: var(--white);
}

.additional-services {
    padding: 80px 20px;
    background-color: var(--white);
}

.additional-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: var(--light-color);
    margin-bottom: 20px;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.service-item p {
    color: var(--text-light);
    flex: 1;
    min-width: 250px;
}

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

.final-cta-section {
    padding: 60px 20px;
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    opacity: 0.9;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.application-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

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

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.guarantee-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

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

.guarantee-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    opacity: 0.7;
}

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

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

.about-content {
    padding: 100px 20px;
}

.mission-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.mission-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light-color);
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.stats-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.approach-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.approach-section > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-step {
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

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

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.services-overview {
    padding: 80px 20px;
}

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

.service-detail-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0 25px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-card h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.service-features-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

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

.btn-service {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #d35400;
    transform: scale(1.05);
    color: var(--white);
}

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

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

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

.additional-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.additional-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.additional-features {
    list-style: none;
    margin-bottom: 15px;
}

.additional-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.additional-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.success-rate,
.service-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--success-color);
    font-weight: 600;
}

.process-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

.faq-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.contact-content {
    padding: 80px 20px;
}

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

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 141, 0.9);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.quick-contact {
    padding: 60px 20px;
    background-color: var(--light-color);
    text-align: center;
}

.quick-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.quick-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-faq {
    padding: 80px 20px;
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: var(--white);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.selected-service {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 18px;
}

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

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

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

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.thanks-info {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.thanks-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.info-boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.thanks-testimonial {
    padding: 80px 20px;
    background-color: var(--white);
}

.thanks-testimonial h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.thanks-cta {
    padding: 80px 20px;
    background-color: var(--light-color);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 20px;
    background-color: var(--white);
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .attention-hook h2,
    .split-text h2,
    .insight-section h2 {
        font-size: 28px;
    }

    .story-section h2,
    .benefits-section h2,
    .pricing-section h2 {
        font-size: 32px;
    }

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

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

    .pricing-card,
    .service-detail-card {
        max-width: 100%;
    }

    .application-form {
        padding: 30px 20px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .nav-links {
        display: none;
    }
}