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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

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

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

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

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.intro-visual img {
    width: 100%;
    height: 100%;
}

.services-grid {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card.split-card {
    min-height: 400px;
}

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

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

.card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1rem;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-text {
    flex: 1.5;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.85;
}

.testimonial-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-container {
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

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

.form-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.form-container {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #5a6c7d;
    cursor: default;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-split {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 4rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-column a:hover {
    opacity: 1;
    color: #3498db;
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.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);
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-left p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-image-right {
    flex: 1;
    background-color: #34495e;
}

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

.content-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.team-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid-split {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-info .role {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
}

.values-content {
    flex: 1.5;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.values-visual img {
    width: 100%;
    height: 100%;
}

.cta-section-centered {
    padding: 5rem 4rem;
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section-centered .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section-centered .cta-primary:hover {
    background-color: #f8f9fa;
}

.page-hero-centered {
    padding: 5rem 4rem;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.page-hero-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-centered p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detail-split {
    padding: 3rem 4rem;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

.service-left {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.service-left img {
    width: 100%;
    height: 100%;
}

.service-right {
    flex: 1;
}

.service-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-right > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-price-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.process-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-section-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    align-items: center;
    background-color: #3498db;
    color: #ffffff;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-right {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.cta-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.contact-hero-split {
    padding: 5rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-main-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual-block {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
}

.additional-info-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background-color: #f8f9fa;
}

.info-left,
.info-right {
    flex: 1;
}

.info-left h2,
.info-right h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.info-left p,
.info-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-left ul,
.info-right ul {
    list-style: none;
    margin-top: 1rem;
}

.info-left li,
.info-right li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-left li::before,
.info-right li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.faq-section {
    padding: 5rem 4rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

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

.cookie-table td {
    font-size: 0.95rem;
    color: #5a6c7d;
}

.thanks-hero {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 3rem;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step-box {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-box p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-weight: 600;
    border-radius: 6px;
}

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

.related-content-split {
    padding: 5rem 4rem;
}

.related-content-split h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.related-cards {
    display: flex;
    gap: 2rem;
}

.related-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.related-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.related-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-card a {
    color: #3498db;
    font-weight: 600;
}

.related-card a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-card,
    .trust-split,
    .form-split,
    .content-split,
    .values-split,
    .contact-main-split,
    .additional-info-split,
    .cta-section-split {
        flex-direction: column;
    }

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

    .hero-text,
    .form-container,
    .hero-content-left {
        padding: 3rem 2rem;
    }

    .hero-text h1,
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .testimonials-container,
    .team-grid-split,
    .steps-grid,
    .related-cards {
        flex-direction: column;
    }

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

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

    .faq-grid-split {
        flex-direction: column;
    }

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

    .cta-right {
        flex-direction: column;
        justify-content: flex-start;
    }

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

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

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

@media (max-width: 600px) {
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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