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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.hero-funnel {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a202c;
}

.hero-funnel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43,108,176,0.6), rgba(26,32,44,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

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

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    background-color: #f7fafc;
    padding: 80px 24px;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-reveal {
    padding: 100px 24px;
    background-color: #ffffff;
}

.section-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-block {
    flex: 1;
    background-color: #edf2f7;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    color: #ffffff;
    padding: 100px 24px;
}

.insight-container {
    max-width: 800px;
    margin: 0 auto;
}

.insight-marker {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.insight-container h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 32px;
}

.insight-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-build {
    padding: 100px 24px;
    background-color: #f7fafc;
}

.trust-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-image {
    flex: 1;
    background-color: #e2e8f0;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.testimonials-inline {
    padding: 100px 24px;
    background-color: #ffffff;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background-color: #f7fafc;
    padding: 40px;
    border-left: 4px solid #2b6cb0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
}

.benefits-reveal {
    padding: 100px 24px;
    background-color: #1a202c;
    color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.how-it-works {
    padding: 100px 24px;
    background-color: #f7fafc;
}

.process-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.step-item {
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #2b6cb0;
}

.step-number {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.step-connector {
    height: 24px;
    width: 4px;
    background-color: #cbd5e0;
    margin-left: 0;
}

.services-preview {
    padding: 100px 24px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-description {
    font-size: 18px;
    color: #4a5568;
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: #f7fafc;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.final-cta {
    padding: 80px 24px 40px;
    background-color: #f7fafc;
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-form-section {
    padding: 60px 24px 100px;
    background-color: #f7fafc;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-container h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
    text-align: center;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #2c5282;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #edf2f7;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #4a5568;
    text-align: justify;
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 24px 24px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2c5282;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a202c;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.about-story {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.story-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 24px;
    background-color: #f7fafc;
}

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

.values-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    padding: 100px 24px;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #edf2f7;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.achievements {
    padding: 100px 24px;
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.achievements-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.achievement-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.achievement-item p {
    font-size: 16px;
    opacity: 0.95;
}

.methodology {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.method-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.method-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.method-list {
    list-style: none;
    padding-left: 0;
}

.method-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.commitment {
    padding: 100px 24px;
    background-color: #f7fafc;
}

.commitment-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.commitment-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.commitment-block {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #2b6cb0;
}

.commitment-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.commitment-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    padding: 80px 24px;
    background-color: #1a202c;
    color: #ffffff;
}

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

.cta-about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #2c5282;
}

.services-intro-text {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.intro-lead {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2d3748;
}

.intro-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background-color: #f7fafc;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a202c;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.service-pricing {
    border-top: 2px solid #cbd5e0;
    padding-top: 24px;
}

.price-main {
    font-size: 36px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #4a5568;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.service-cta {
    padding: 80px 24px;
    background-color: #1a202c;
    color: #ffffff;
}

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

.service-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-page-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.contact-info-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

.contact-note {
    background-color: #f7fafc;
    padding: 24px;
    border-left: 4px solid #2b6cb0;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-form-block {
    flex: 1;
    background-color: #f7fafc;
    padding: 48px;
}

.contact-form-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-section {
    padding: 80px 24px;
    background-color: #f7fafc;
}

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

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #2b6cb0;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

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

.thanks-hero {
    padding: 100px 24px;
    background-color: #f7fafc;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-message {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 60px;
}

.thanks-details {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.thanks-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    padding-top: 8px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #2b6cb0;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #2d3748;
}

.thanks-additional {
    padding: 80px 24px;
    background-color: #ffffff;
}

.additional-container {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
}

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

.additional-item {
    flex: 1;
    padding: 32px;
    background-color: #f7fafc;
    text-align: center;
}

.additional-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.additional-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-update {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-container a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2c5282;
}

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

    .section-wrapper,
    .trust-wrapper,
    .approach-wrapper,
    .contact-grid {
        flex-direction: column;
    }

    .services-showcase,
    .benefits-grid,
    .values-grid,
    .commitment-blocks,
    .additional-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .nav-links {
        gap: 16px;
    }

    .service-detail-item {
        flex-direction: column !important;
        padding: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}