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

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f7f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #2d5f7f;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2d5f7f 0%, #1a3d52 100%);
    color: #ffffff;
}

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2d5f7f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-left {
    flex: 1;
    background: #f0f4f8;
}

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

.content-right {
    flex: 1;
}

.content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3d52;
}

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

.problem-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.problem-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d52;
}

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

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5f7f;
}

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

.approach-split {
    padding: 100px 40px;
    background: #ffffff;
}

.approach-split .content-left {
    padding: 50px;
    background: transparent;
}

.approach-split .content-right {
    background: #e8f0f5;
}

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

.reference-link {
    color: #2d5f7f;
    text-decoration: none;
    font-weight: 600;
}

.reference-link:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d52;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: #1a3d52;
}

.service-card p {
    font-size: 16px;
    margin: 0 30px 20px;
    color: #4a5568;
    line-height: 1.7;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f7f;
    margin: 0 30px 30px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #2d5f7f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.cta-secondary:hover {
    background: #1a3d52;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d52;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2d5f7f;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a3d52 0%, #2d5f7f 100%);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.consultation-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-step {
    display: block;
}

.form-step.hidden {
    display: none;
}

.form-step h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a3d52;
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.service-option:hover {
    border-color: #2d5f7f;
    background: #f8f9fa;
}

.service-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.service-label strong {
    font-size: 18px;
    color: #2c3e50;
}

.service-price {
    font-size: 16px;
    color: #2d5f7f;
    font-weight: 600;
}

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

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

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

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

.btn-next,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2d5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-next:hover,
.btn-submit:hover {
    background: #1a3d52;
    transform: translateY(-2px);
}

.form-actions {
    display: flex;
    gap: 15px;
}

.btn-back {
    flex: 1;
    padding: 16px;
    background: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #5a6268;
}

.disclaimer-section {
    padding: 80px 40px;
    background: #fff9e6;
}

.disclaimer-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #ffc107;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a3d52;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.references-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a3d52;
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.references-list a {
    color: #2d5f7f;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #1a3d52;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c5d0;
}

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

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

.footer-col ul li a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d5f7f;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3d52;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 200;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #5a6268;
}

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

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

    .services-cards {
        flex-direction: column;
    }

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

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

.page-header {
    background: linear-gradient(135deg, #2d5f7f 0%, #1a3d52 100%);
    padding: 100px 40px 80px;
    text-align: center;
    color: #ffffff;
}

.header-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-content p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 40px;
    background: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

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

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3d52;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

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

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f7f;
}

.btn-book {
    display: inline-block;
    padding: 14px 35px;
    background: #2d5f7f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.btn-book:hover {
    background: #1a3d52;
    transform: translateY(-2px);
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.process-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a3d52;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2d5f7f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a3d52;
}

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

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

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a3d52;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5f7f;
}

.contact-detail p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3d52;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d5f7f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a3d52;
}

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

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

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

.legal-content a {
    color: #2d5f7f;
    text-decoration: none;
}

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

.thanks-container {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d5f7f 0%, #1a3d52 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a3d52;
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-service strong {
    color: #2d5f7f;
}

.btn-home {
    display: inline-block;
    padding: 14px 35px;
    background: #2d5f7f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.btn-home:hover {
    background: #1a3d52;
    transform: translateY(-2px);
}

.about-intro {
    padding: 100px 40px;
    background: #ffffff;
}

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5f7f;
}

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

.team-section {
    padding: 100px 40px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #1a3d52;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 60px;
}

.team-member {
    margin-bottom: 60px;
}

.team-member-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.team-member:nth-child(even) .team-member-content {
    flex-direction: row-reverse;
}

.team-member-image {
    flex: 0 0 300px;
    background: #e9ecef;
}

.team-member-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.team-member-text {
    flex: 1;
}

.team-member-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a3d52;
}

.team-role {
    font-size: 16px;
    color: #2d5f7f;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-member-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.approach-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a3d52;
}

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a5568;
}

.approach-list {
    list-style: none;
    margin-bottom: 30px;
}

.approach-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f7f;
    font-weight: 700;
    font-size: 18px;
}

.approach-list li strong {
    color: #1a3d52;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d5f7f 0%, #1a3d52 100%);
}

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

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.faq-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a3d52;
}

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

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

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

    .services-cards {
        flex-direction: column;
    }

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

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

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

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

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

    .consultation-form {
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .header-content h1 {
        font-size: 38px;
    }

    .thanks-box {
        padding: 40px 30px;
    }
}