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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #d4a574;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #d4a574;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #c69563;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.nav-asymmetric {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4a574;
}

.hero-offset {
    display: flex;
    align-items: stretch;
    min-height: 85vh;
    background: #f9f9f9;
}

.hero-content-left {
    flex: 1;
    padding: 6rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #d4a574;
    color: #1a1a1a;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-asymmetric {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 0.8;
    position: relative;
    transform: translateY(-40px);
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 5rem 2rem;
    background: #f4f4f4;
}

.services-header-offset {
    max-width: 1300px;
    margin: 0 auto 3rem;
    padding-left: 8rem;
}

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

.services-header-offset p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.services-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(55% - 1rem);
}

.card-medium {
    flex: 1 1 calc(45% - 1rem);
}

.card-small {
    flex: 1 1 calc(30% - 1rem);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8e8e8;
}

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

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4a574;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #f9f9f9;
    border-left: 5px solid #d4a574;
}

.form-intro {
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

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

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d4a574;
    color: #1a1a1a;
}

.form-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.form-notice a {
    color: #d4a574;
    text-decoration: underline;
}

.trust-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.trust-blocks {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.trust-item p {
    color: #d0d0d0;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f9f4ef;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.footer-asymmetric {
    background: #0f0f0f;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-block a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #d4a574;
}

.footer-block p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .hero-image-right {
        height: 400px;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .intro-visual {
        transform: translateY(0);
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .trust-blocks {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-lead {
        font-size: 1rem;
    }

    .services-header-offset {
        padding-left: 0;
    }
}

.about-hero,
.services-header-page,
.contact-hero,
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content,
.services-header-content,
.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1,
.services-header-page h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p,
.services-header-page p,
.contact-hero p {
    font-size: 1.25rem;
    color: #d0d0d0;
}

.about-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background: #f4f4f4;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

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

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #d4a574;
}

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

.value-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.team-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.team-visual {
    margin-bottom: 2.5rem;
    background: #f4f4f4;
}

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

.team-description p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f4f4f4;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d4a574;
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.step-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

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

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

.cta-about p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

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

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

.service-detail-card {
    background: #f9f9f9;
    padding: 2.5rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #d4a574;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
}

.service-detail-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-body ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a4a4a;
}

.service-detail-body ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.service-image-full {
    margin: 1.5rem 0;
    background: #e8e8e8;
}

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

.service-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    padding: 1rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid #d4a574;
}

.pricing-notes {
    padding: 4rem 2rem;
    background: #f4f4f4;
}

.pricing-notes-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-notes-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.notes-grid {
    display: flex;
    gap: 2rem;
}

.note-block {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
}

.note-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.note-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

.services-cta-section {
    padding: 4rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

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

.services-cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #d4a574;
}

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

.contact-detail {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.contact-visual {
    flex: 0.6;
    background: #f4f4f4;
}

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

.contact-instructions {
    padding: 4rem 2rem;
    background: #f4f4f4;
}

.instructions-container {
    max-width: 1100px;
    margin: 0 auto;
}

.instructions-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.instructions-grid {
    display: flex;
    gap: 2rem;
}

.instruction-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
}

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

.instruction-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-alternative {
    padding: 4rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

.alternative-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.alternative-container p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.contact-map-note {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.map-note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.map-note-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

.thanks-lead {
    font-size: 1.2rem;
    color: #d0d0d0;
}

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

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

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

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

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

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #d4a574;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-info {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.thanks-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #d4a574;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-related {
    padding: 4rem 2rem;
    background: #ffffff;
}

.related-container {
    max-width: 1100px;
    margin: 0 auto;
}

.related-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.related-links {
    display: flex;
    gap: 2rem;
}

.related-card {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.related-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #1a1a1a;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container ul li {
    color: #4a4a4a;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-container strong {
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .about-story-wrapper,
    .contact-container {
        flex-direction: column;
    }

    .approach-steps,
    .notes-grid,
    .instructions-grid,
    .thanks-info-container,
    .related-links {
        flex-direction: column;
    }

    .values-grid .value-block {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .services-header-page h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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