* {
    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: #2c2c2c;
    background-color: #ffffff;
}

.main-header {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #efefef;
    border-radius: 3px;
    margin: 0 1rem;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a3d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234830;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2d5a3d;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.intro-split {
    display: flex;
    background-color: #ffffff;
}

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

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

.intro-image {
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.intro-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.services-highlight {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

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

.services-header p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #234830;
}

.consultation-form {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.form-intro p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.form-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.form-wrapper {
    flex: 1;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.selected-service-display {
    background-color: #e8f4ed;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #2d5a3d;
    margin-bottom: 1rem;
}

.selected-service-display p {
    color: #666;
    font-size: 0.9rem;
}

.selected-service-display.active p {
    color: #2d5a3d;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234830;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.credentials-split {
    display: flex;
    background-color: #f0f0f0;
    padding: 4rem 0;
}

.credentials-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credentials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.credentials-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.credentials-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

.stat-item {
    margin-bottom: 2.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff9e6;
    border-top: 3px solid #f5c842;
}

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

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

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #fafafa;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2d5a3d;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.page-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.page-hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.page-hero-simple {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.content-split {
    display: flex;
    background-color: #ffffff;
    padding: 4rem 0;
}

.content-split.reverse {
    flex-direction: row-reverse;
    background-color: #f9f9f9;
}

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

.content-image {
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.content-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.content-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-header h2 {
    font-size: 2.8rem;
    color: #2d5a3d;
}

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

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.values-split {
    display: flex;
    background-color: #ffffff;
}

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

.values-image {
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.values-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.values-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

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

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

.team-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.team-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.capability-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.capability-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.cta-banner {
    padding: 5rem 2rem;
    background-color: #2d5a3d;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
}

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

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.pricing-notes {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.pricing-notes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.pricing-notes > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: #555;
}

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

.factor-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.factor-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

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

.contact-item .note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image-section {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-guidelines {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-guidelines h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d5a3d;
}

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

.guideline-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.guideline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.directions-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.directions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

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

.directions-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.important-note {
    background-color: #fff9e6;
    padding: 1.2rem;
    border-left: 4px solid #f5c842;
    margin-top: 2rem;
    font-weight: 600;
}

.thanks-container {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.service-confirmation {
    background-color: #e8f4ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2d5a3d;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5a3d;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234830;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.thanks-note {
    background-color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.thanks-note p {
    font-size: 0.9rem;
    color: #666;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2d5a3d;
}

.last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2d5a3d;
}

.legal-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.8;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-section li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #444;
    line-height: 1.7;
}

.legal-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.legal-section a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #234830;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #fafafa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #2d5a3d;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #444;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .page-hero-split,
    .content-split,
    .values-split,
    .credentials-split,
    .form-container-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .ad-disclosure {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-header h2,
    .process-header h2,
    .team-header h2 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}