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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #4a7c4e;
    --accent-color: #7cb342;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #4CAF50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.75rem 1.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-block {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    padding: 3rem 1.5rem;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: var(--secondary-color);
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 400px;
}

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

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-wrapper p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.75rem;
}

.service-card p {
    color: var(--text-light);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-select {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-light);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-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 textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-style: italic;
}

.author {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.cta-final p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    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 {
    text-align: center;
    line-height: 1.6;
}

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.content-wrapper img {
    width: 100%;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.team-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.team-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approach-wrapper img {
    width: 100%;
    border-radius: 8px;
}

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

.why-dortmund h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-dortmund p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-about {
    background: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.cta-about p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

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

.service-block.reverse {
    flex-direction: column;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

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

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.note-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-services {
    background: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.cta-services p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.info-note p {
    margin-bottom: 0;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

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

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

.location-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem 2rem;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
}

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

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

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

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

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.cta-contact p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-info {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

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

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

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

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: scale(1.02);
}

.legal-page {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        border: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero-block {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
        margin-top: 0;
    }

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

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

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

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

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

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

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

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
    }

    .content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .content-wrapper img {
        flex: 0 0 45%;
    }

    .about-text {
        flex: 1;
    }

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

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

    .approach-wrapper {
        flex-direction: row-reverse;
        align-items: center;
    }

    .approach-text {
        flex: 1;
    }

    .approach-wrapper img {
        flex: 0 0 45%;
    }

    .service-block {
        flex-direction: row;
        align-items: center;
    }

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

    .service-image {
        flex: 0 0 45%;
    }

    .service-info {
        flex: 1;
    }

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

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

    .contact-visual {
        flex: 0 0 45%;
    }

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

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

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

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

    .service-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .why-grid {
        flex-wrap: nowrap;
    }

    .why-item {
        flex: 1;
    }

    .testimonial {
        flex: 0 0 calc(33.333% - 1.33rem);
    }

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