* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 650px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    background-color: #e8edf2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-split {
    display: flex;
    min-height: 550px;
}

.benefits-image {
    flex: 1;
    background-color: #e8edf2;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefits-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.benefits-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.how-it-works {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.steps-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

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

.services-split {
    display: flex;
    min-height: 700px;
    background-color: #ffffff;
}

.services-info {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
    overflow-y: auto;
}

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

.services-info > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-option {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

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

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

.price {
    font-size: 26px;
    color: #3498db;
    font-weight: 700;
    margin-top: 16px;
}

.form-container {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.testimonials-split {
    display: flex;
    min-height: 500px;
}

.testimonials-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial {
    margin-bottom: 36px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 500;
}

.testimonials-image {
    flex: 1;
    background-color: #e8edf2;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a202c;
    font-weight: 600;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

.about-hero-image {
    flex: 1;
    background-color: #e8edf2;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-hero-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

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

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.story-image {
    flex: 1;
    background-color: #e8edf2;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.values-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

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

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 1;
    background-color: #e8edf2;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.approach-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.approach-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.approach-item h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

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

.services-page-hero {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 550px;
    border-bottom: 1px solid #e2e8f0;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-price {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.service-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
}

.pricing-comparison {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.pricing-comparison h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.comparison-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: #2c3e50;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.services-cta-section {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.contact-page-hero {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.contact-page-hero p {
    font-size: 18px;
    color: #4a5568;
}

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

.contact-info-block {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #e8edf2;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255,255,255,0.95);
    padding: 20px 30px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-additional-info {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.info-blocks-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

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

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

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

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thanks-next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 600;
}

.next-steps-list {
    padding-left: 24px;
}

.next-steps-list li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .benefits-split,
    .services-split,
    .testimonials-split,
    .about-hero-split,
    .about-story-split,
    .team-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content,
    .benefits-content,
    .services-info,
    .form-container,
    .testimonials-content,
    .about-hero-content,
    .story-content,
    .team-content,
    .service-detail-content,
    .contact-info-block {
        padding: 50px 30px;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 36px;
    }

    .how-it-works,
    .faq-section,
    .values-section,
    .approach-section,
    .pricing-comparison,
    .contact-additional-info {
        padding: 60px 30px;
    }

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

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