:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.hidden {
    display: none !important;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

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

.nav-links {
    display: none;
    list-style: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

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

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

.intro-cards {
    padding: 60px 20px;
    background: var(--bg-white);
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.challenge-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.challenge-list {
    list-style: none;
    margin: 24px 0;
}

.challenge-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-color);
}

.challenge-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 1.8rem;
    font-weight: 700;
}

.emphasis-text {
    background: linear-gradient(120deg, #fef3c7 0%, transparent 100%);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    margin-top: 24px;
}

.split-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.approach-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 48px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.approach-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

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

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.testimonial-band {
    padding: 60px 20px;
    background: var(--secondary-color);
}

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

.testimonial p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    color: #94a3b8;
    font-size: 0.95rem;
    font-style: normal;
}

.services-selection {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-color);
}

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

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.guarantee-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.guarantee-content h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.guarantee-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
}

.guarantee-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    padding: 80px 20px 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-intro,
.values-section,
.expertise-section,
.stats-section,
.method-section {
    padding: 80px 20px;
}

.about-intro {
    background: var(--bg-white);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.expertise-section {
    background: var(--bg-white);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
}

.expertise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.expertise-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

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

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

.method-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.method-step h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.services-intro {
    padding: 40px 20px 20px;
    background: var(--bg-white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.services-detailed {
    padding: 40px 20px 80px;
    background: var(--bg-white);
}

.service-detail-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.price-tag {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-detail-body h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 16px;
}

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

.service-includes li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-color);
}

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

.why-choose-section,
.faq-section {
    padding: 80px 20px;
}

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

.reasons-grid,
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-card,
.faq-item {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.reason-card h3,
.faq-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.reason-card p,
.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    background: var(--bg-white);
}

.contact-content {
    padding: 60px 20px 80px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.contact-block {
    margin-bottom: 28px;
}

.contact-block h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-block p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 32px;
}

.contact-note p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.quick-contact-box {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
}

.quick-contact-box h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.quick-contact-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
}

.thanks-content h1 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
}

.service-confirmation p {
    color: var(--text-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content {
    padding: 60px 20px 80px;
    background: var(--bg-white);
}

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

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-text li {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.7;
}

.legal-text strong {
    color: var(--secondary-color);
}

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

    .nav-links li a {
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.3s ease;
    }

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

    .mobile-toggle {
        display: none;
    }

    .hero-section {
        padding: 100px 20px;
    }

    .hero-content {
        text-align: left;
    }

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

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

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

    .split-text,
    .split-visual {
        flex: 1;
    }

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

    .approach-card {
        flex: 1 1 calc(50% - 14px);
    }

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

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .footer-col {
        flex: 1;
    }

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

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

    .value-card {
        flex: 1 1 calc(50% - 12px);
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .reason-card,
    .faq-item {
        flex: 1 1 calc(50% - 12px);
    }

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

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

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

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

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

    .service-card {
        flex: 1 1 calc(33.333% - 22px);
    }

    .approach-card {
        flex: 1 1 calc(25% - 21px);
    }
}