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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a202c;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.hero-left {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #667eea;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.intro-split {
    display: flex;
    flex-direction: column;
}

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

.intro-image {
    min-height: 350px;
    overflow: hidden;
}

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

.intro-content {
    padding: 4rem 5%;
    background: #f7fafc;
}

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

.intro-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.services-preview {
    padding: 5rem 5%;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-header p {
    font-size: 1.1rem;
    color: #718096;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1d4ed8;
}

.service-card.featured .btn-service {
    background: #ffffff;
    color: #667eea;
}

.services-cta-block {
    text-align: center;
    margin-top: 2rem;
}

.trust-split {
    display: flex;
    flex-direction: column;
    background: #f7fafc;
}

.trust-content {
    padding: 4rem 5%;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-visual {
    min-height: 350px;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 5rem 5%;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.testimonial-card {
    padding: 2rem;
    background: #f7fafc;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1a202c;
}

.process-split {
    display: flex;
    flex-direction: column;
    background: #f7fafc;
}

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

.process-image {
    min-height: 350px;
    overflow: hidden;
}

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

.process-content {
    padding: 4rem 5%;
}

.process-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step-text p {
    color: #4a5568;
    line-height: 1.7;
}

.form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-form-submit {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-form-submit:hover {
    background: #5568d3;
}

.final-cta {
    padding: 5rem 5%;
    background: #f7fafc;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-final {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #667eea;
    color: #ffffff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.footer {
    padding: 4rem 5% 2rem;
    background: #1a202c;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: #10b981;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 200;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.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;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-cookie-reject {
    background: #718096;
    color: #ffffff;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-image {
    min-height: 300px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #667eea;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #1a202c;
}

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

.service-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.services-cta-section {
    padding: 4rem 5%;
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-story-split {
    display: flex;
    flex-direction: column;
}

.about-story-content {
    padding: 4rem 5%;
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-story-image {
    min-height: 400px;
    overflow: hidden;
}

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

.about-values {
    padding: 5rem 5%;
    background: #f7fafc;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.value-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

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

.about-team-split {
    display: flex;
    flex-direction: column;
}

.about-team-split.reverse {
    flex-direction: column;
}

.about-team-image {
    min-height: 350px;
    overflow: hidden;
}

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

.about-team-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.about-team-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-approach {
    padding: 5rem 5%;
    background: #f7fafc;
}

.about-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.approach-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.approach-item p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-numbers {
    padding: 5rem 5%;
    background: #1e3a8a;
    color: #ffffff;
}

.about-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.number-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.number-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-cta {
    padding: 4rem 5%;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.about-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.contact-info {
    padding: 4rem 5%;
    background: #f7fafc;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.contact-text p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-text a {
    color: #2563eb;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-map {
    min-height: 400px;
    overflow: hidden;
}

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

.contact-faq {
    padding: 5rem 5%;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.faq-item {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
}

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

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 4rem 5%;
    background: #667eea;
    color: #ffffff;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-hero {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: #ffffff;
    color: #10b981;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.thanks-service {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-next-steps {
    padding: 5rem 5%;
    background: #ffffff;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.next-step-card {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.next-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.next-step-card p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-explore {
    padding: 4rem 5%;
    background: #f7fafc;
    text-align: center;
}

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-explore p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.explore-link {
    display: block;
    padding: 1rem;
    background: #ffffff;
    color: #2563eb;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.explore-link:hover {
    background: #2563eb;
    color: #ffffff;
}

.legal-page {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.legal-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a202c;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-page ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2563eb;
}

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    font-style: italic;
    color: #718096;
}

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

    .nav-toggle {
        display: none;
    }

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

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

    .hero-title {
        font-size: 3.5rem;
    }

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

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

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

    .services-grid {
        flex-direction: row;
    }

    .trust-split {
        flex-direction: row;
    }

    .trust-content,
    .trust-visual {
        flex: 1;
    }

    .testimonials-flex {
        flex-direction: row;
    }

    .process-split {
        flex-direction: row;
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

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

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

    .service-detail-image,
    .service-detail-content {
        flex: 1;
    }

    .about-story-split {
        flex-direction: row;
    }

    .about-story-content,
    .about-story-image {
        flex: 1;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .about-team-split {
        flex-direction: row;
    }

    .about-team-split.reverse {
        flex-direction: row-reverse;
    }

    .about-team-image,
    .about-team-content {
        flex: 1;
    }

    .approach-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .numbers-flex {
        flex-direction: row;
    }

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

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

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

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

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

    .next-steps-grid {
        flex-direction: row;
    }

    .explore-links {
        flex-direction: row;
        justify-content: center;
    }

    .explore-link {
        flex: 0 0 200px;
    }
}