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

:root {
    --primary-color: #0a4d68;
    --secondary-color: #088395;
    --accent-color: #05b2dc;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.hero-split {
    margin-top: 70px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.split-container {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.split-left {
    order: 1;
}

.split-right {
    order: 2;
}

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

.hero-content h1,
.content-block h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p,
.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.hero-image {
    background: var(--light-bg);
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 131, 149, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.impact-section,
.problem-section,
.methodology-section,
.services-preview,
.case-study-section,
.trust-section,
.testimonial-section,
.form-section,
.urgency-section {
    padding: 4rem 1.5rem;
}

.impact-section {
    background: var(--light-bg);
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.methodology-section {
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
}

.method-card.reverse {
    flex-direction: column;
}

.method-content {
    padding: 2rem 1.5rem;
}

.method-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method-image {
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.service-item {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.case-study-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.case-left {
    overflow: hidden;
}

.case-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.case-right {
    padding: 2.5rem 1.5rem;
    background: var(--light-bg);
}

.case-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.case-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--success-color);
}

.case-result strong {
    color: var(--success-color);
}

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

.trust-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-content {
    padding: 2rem 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-section {
    background: var(--light-bg);
}

.form-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.form-left {
    padding: 2rem 1.5rem;
}

.form-left h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.form-right {
    padding: 2rem 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 131, 149, 0.3);
}

.urgency-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.main-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(5, 178, 220, 0.4);
}

.btn-sticky:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(5, 178, 220, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: var(--success-color);
    color: white;
}

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-reject:hover {
    background: white;
    color: var(--dark-bg);
}

.page-hero {
    margin-top: 70px;
    padding: 3rem 0;
}

.story-section,
.philosophy-section,
.team-section,
.approach-section,
.values-section,
.results-section,
.cta-section {
    padding: 4rem 1.5rem;
}

.philosophy-section {
    background: var(--light-bg);
}

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

.philosophy-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-image {
    overflow: hidden;
}

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

.team-section {
    background: white;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.values-section {
    background: var(--light-bg);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.results-section {
    background: var(--primary-color);
    color: white;
}

.results-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.result-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-detail {
    padding: 4rem 1.5rem;
}

.service-detail.alt-bg {
    background: var(--light-bg);
}

.service-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-includes {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.service-includes h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.process-section {
    padding: 4rem 1.5rem;
    background: var(--light-bg);
}

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

.process-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guarantee-section {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.guarantee-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 1.5rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    line-height: 1.8;
}

.info-block a {
    color: var(--secondary-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.contact-image {
    overflow: hidden;
    border-radius: 8px;
}

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

.location-section {
    padding: 4rem 1.5rem;
    background: var(--light-bg);
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thanks-section {
    padding: 6rem 1.5rem;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-service {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
    align-items: center;
}

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-note a {
    color: var(--secondary-color);
}

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

.legal-page {
    padding: 4rem 1.5rem;
    margin-top: 70px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--secondary-color);
}

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

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-details {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.cookie-details th,
.cookie-details td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-details th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-split,
    .split-container {
        flex-direction: row;
    }

    .split-left,
    .split-right {
        padding: 4rem 3rem;
    }

    .hero-content h1,
    .content-block h1 {
        font-size: 3rem;
    }

    .hero-content p,
    .content-block p {
        font-size: 1.2rem;
    }

    .impact-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .methodology-grid {
        gap: 4rem;
    }

    .method-card {
        flex-direction: row;
        align-items: center;
    }

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

    .method-content,
    .method-image {
        flex: 1;
    }

    .method-image img {
        height: 100%;
        min-height: 300px;
    }

    .service-list {
        gap: 2rem;
    }

    .case-study-container {
        flex-direction: row;
    }

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

    .case-left img {
        height: 100%;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .testimonial-section .split-container {
        flex-direction: row;
    }

    .form-container {
        flex-direction: row;
        gap: 3rem;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .card-image img {
        height: 250px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .results-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .result-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-info,
    .contact-image {
        flex: 1;
    }

    .contact-image img {
        height: 100%;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-details {
        display: table;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .split-left,
    .split-right {
        padding: 5rem 4rem;
    }

    .trust-grid,
    .philosophy-grid {
        flex-wrap: nowrap;
    }

    .trust-card,
    .philosophy-card {
        min-width: auto;
    }

    .results-grid,
    .process-grid {
        flex-wrap: nowrap;
    }

    .result-card,
    .process-step {
        min-width: auto;
    }
}