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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2563eb;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 8%;
    background: #fafafa;
}

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #333;
}

.intro-asymmetric {
    padding: 5rem 8%;
    background: #ffffff;
    display: flex;
    justify-content: flex-end;
}

.intro-narrow {
    max-width: 680px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.problem-split {
    display: flex;
    min-height: 600px;
}

.problem-right {
    flex: 1.2;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problem-left {
    flex: 1;
    background: #f5f5f5;
}

.problem-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-section {
    padding: 6rem 8%;
    background: #f8fafc;
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-left: 4px solid #2563eb;
}

.insight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-cta {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #1d4ed8;
}

.services-split {
    padding: 6rem 8%;
    background: #ffffff;
}

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

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

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.service-card-split {
    display: flex;
    margin-bottom: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-left {
    flex: 1;
    background: #e8e8e8;
}

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

.service-right {
    flex: 1.3;
    padding: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-right p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #333;
}

.trust-section {
    padding: 6rem 8%;
    background: #fafafa;
}

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

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.benefits-section {
    padding: 6rem 8%;
    background: #ffffff;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.form-section {
    padding: 6rem 8%;
    background: #f8fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

.service-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 0.95rem;
}

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

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-privacy {
    margin: 1.5rem 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.form-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

.urgency-section {
    padding: 5rem 8%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.urgency-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.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: background 0.3s;
}

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background: #555;
}

.page-hero {
    padding: 5rem 8%;
    background: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #555;
}

.about-split {
    display: flex;
    padding: 5rem 8%;
    gap: 4rem;
    align-items: center;
}

.about-left {
    flex: 1.2;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-right {
    flex: 1;
}

.about-right img {
    border-radius: 8px;
}

.mission-section {
    padding: 5rem 8%;
    background: #f8fafc;
}

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

.mission-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 8%;
    background: #ffffff;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    padding: 5rem 8%;
    gap: 4rem;
    align-items: center;
    background: #fafafa;
}

.approach-right {
    flex: 1.2;
}

.approach-right h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.approach-left {
    flex: 1;
}

.approach-left img {
    border-radius: 8px;
}

.experience-section {
    padding: 5rem 8%;
    background: #ffffff;
}

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

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.experience-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 5rem 8%;
    background: #2563eb;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-intro {
    padding: 3rem 8%;
    background: #ffffff;
}

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

.intro-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 8%;
    background: #ffffff;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: #fafafa;
    border-radius: 8px;
}

.service-detail-card.featured {
    background: #f8fafc;
    border: 2px solid #2563eb;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.services-comparison {
    padding: 4rem 8%;
    background: #f8fafc;
}

.services-comparison h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.comparison-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    padding: 5rem 8%;
    gap: 4rem;
}

.contact-left {
    flex: 1;
}

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

.contact-left > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.contact-note {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 6px;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
}

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

.response-info {
    padding: 4rem 8%;
    background: #fafafa;
}

.response-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.response-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.response-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.cta-services {
    padding: 4rem 8%;
    background: #2563eb;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
}

.thanks-details {
    padding: 5rem 8%;
    background: #ffffff;
}

.thanks-box {
    max-width: 900px;
    margin: 0 auto;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 3rem 8%;
    background: #fafafa;
}

.service-info-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.service-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info-box p {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}

.thanks-resources {
    padding: 5rem 8%;
    background: #ffffff;
}

.thanks-resources h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.resources-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

.resource-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-note {
    padding: 3rem 8%;
    background: #f8fafc;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #2563eb;
}

.note-box p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.note-box a {
    color: #2563eb;
    font-weight: 600;
}

.legal-content {
    padding: 4rem 8%;
    background: #ffffff;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a1a;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .problem-split,
    .service-card-split,
    .about-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .testimonials-grid,
    .resources-grid {
        flex-direction: column;
    }

    .nav-right {
        gap: 1rem;
    }

    .benefits-list,
    .values-grid {
        flex-direction: column;
    }

    .benefit-item,
    .value-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
