* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.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: 300px;
}

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

.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: #27ae60;
    color: #ffffff;
}

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

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

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

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

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

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

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-notice {
    background: #ecf0f1;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.value-split {
    display: flex;
    align-items: center;
}

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

.value-image {
    flex: 1;
    background: #d5dce3;
}

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

.value-text {
    flex: 1;
    padding: 80px 60px;
}

.value-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    line-height: 1.3;
}

.value-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.services-preview {
    padding: 100px 60px;
    background: #fafbfc;
}

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

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1a252f;
}

.section-intro p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 18px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a252f;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    display: block;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

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

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

.form-split {
    display: flex;
    background: #2c3e50;
    color: #ffffff;
}

.form-left {
    flex: 1;
    padding: 80px 60px;
    background: #34495e;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 22px;
    line-height: 1.3;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
}

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

.form-right {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #4a5f7f;
    border-radius: 6px;
    font-size: 15px;
    background: #34495e;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

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

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

.trust-split {
    display: flex;
    padding: 100px 60px;
    background: #ffffff;
}

.trust-text {
    flex: 1.2;
    padding-right: 60px;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

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

.stat-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    display: flex;
    flex-direction: column;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 50px;
    gap: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    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: 12px;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
    font-style: italic;
}

.page-hero-about {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 80px 60px;
}

.hero-content-about {
    flex: 1;
    padding-right: 60px;
}

.hero-content-about h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content-about p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.story-section {
    padding: 100px 60px;
    background: #ffffff;
}

.story-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.values-section {
    padding: 100px 60px;
    background: #fafbfc;
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

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

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

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1a252f;
}

.team-intro p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-areas {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a252f;
}

.area-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about {
    padding: 100px 60px;
    background: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.services-hero {
    padding: 100px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ecf0f1;
}

.services-detailed {
    padding: 80px 60px;
    background: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8eef3;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

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

.service-includes li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5a6c7d;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

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

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

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

.process-section {
    padding: 100px 60px;
    background: #fafbfc;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-cta {
    padding: 100px 60px;
    background: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.contact-hero {
    padding: 80px 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background: #fafbfc;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a252f;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-email {
    color: #5a6c7d;
    font-weight: 500;
}

.contact-form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-form-page {
    max-width: 100%;
}

.form-note {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 15px;
    line-height: 1.5;
}

.form-note a {
    color: #3498db;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.faq-contact {
    padding: 100px 60px;
    background: #ffffff;
}

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

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

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

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.thanks-section {
    padding: 100px 60px;
    background: #fafbfc;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-details {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.submission-info strong {
    color: #1a252f;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

.next-steps-grid {
    display: flex;
    gap: 25px;
    text-align: left;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.step-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a252f;
}

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

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

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid #e8eef3;
}

.thanks-contact p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.contact-email-thanks {
    color: #3498db;
    font-weight: 600;
    font-size: 16px;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a252f;
    line-height: 1.3;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a252f;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-container strong {
    color: #1a252f;
    font-weight: 600;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fafbfc;
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table thead,
.cookie-table thead {
    background: #2c3e50;
    color: #ffffff;
}

.gdpr-table th,
.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e8eef3;
    font-size: 14px;
    color: #5a6c7d;
}

.gdpr-table tbody tr:last-child td,
.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .value-image,
    .value-text,
    .form-left,
    .form-right,
    .trust-text,
    .trust-stats {
        flex: none;
        width: 100%;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .page-hero-about,
    .story-container,
    .contact-main,
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-content-about,
    .story-text,
    .contact-info,
    .contact-form-container {
        padding-right: 0;
    }

    .team-areas,
    .process-steps,
    .next-steps-grid,
    .thanks-actions {
        flex-direction: column;
    }

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

    .legal-container {
        padding: 40px 30px;
    }

    .gdpr-table,
    .cookie-table {
        font-size: 12px;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}