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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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 {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

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

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

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

.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual {
    flex: 1;
    background-color: #e8f4f8;
}

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

.benefits-alternating {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefit-row {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    min-height: 500px;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

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

.benefit-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.benefit-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

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

.cta-form-section {
    padding: 80px 0;
    background-color: #e8f4f8;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
    color: #555;
}

.selected-service-display {
    margin-bottom: 20px;
}

.service-selected-notice {
    padding: 12px 16px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #3498db;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.regions-section {
    padding: 80px 0;
}

.regions-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.region-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.region-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.region-card h3 {
    font-size: 24px;
    padding: 20px 24px 12px;
    color: #2c3e50;
}

.region-card p {
    font-size: 16px;
    padding: 0 24px 24px;
    color: #555;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

.page-header {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    min-height: 500px;
}

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

.service-detail-card.featured .service-detail-content {
    background-color: #e8f4f8;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-price-featured {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.price-discounted {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.savings-note {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.cta-services {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-services p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.about-story {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

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

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

.about-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-mission h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.mission-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 260px;
    max-width: 360px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-team {
    padding: 80px 0;
}

.about-team h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.7;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

.about-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.values-image {
    flex: 1;
    background-color: #dfe6e9;
}

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.values-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.about-regions {
    padding: 80px 0;
}

.about-regions h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-regions > p {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.7;
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.region-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 260px;
    max-width: 360px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.region-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.region-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-about {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.contact-section {
    padding: 80px 0;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

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

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-box {
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 8px;
    text-align: left;
}

.selected-service-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.selected-service-box p {
    font-size: 18px;
    color: #555;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-note {
    padding: 16px;
    background-color: #fff3cd;
    border-radius: 4px;
}

.thanks-note p {
    font-size: 14px;
    color: #856404;
}

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 16px;
    color: #999;
    margin-bottom: 32px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
    }

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

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

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

    .values-split {
        flex-direction: column-reverse;
    }

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

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-main.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .section-title {
        font-size: 32px;
    }

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

    .testimonial-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .region-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .form-wrapper {
        padding: 32px 24px;
    }

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

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

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

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

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

    .section-title {
        font-size: 28px;
    }

    .benefit-content,
    .service-detail-content {
        padding: 30px 20px;
    }

    .form-wrapper {
        padding: 24px 16px;
    }
}
