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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #d35400;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.85), rgba(230, 126, 34, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtext {
    font-size: 22px;
    color: #ffffff;
    max-width: 700px;
    font-weight: 400;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.story-intro {
    background-color: #ecf0f1;
    text-align: center;
}

.story-intro h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.problem-amplification {
    background-color: #ffffff;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

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

.impact-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.impact-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.insight-reveal {
    background-color: #fff8f0;
}

.insight-reveal h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 16px;
    font-weight: 700;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.testimonial-section {
    background-color: #2c3e50;
    text-align: center;
}

.testimonial-main {
    border: none;
}

.testimonial-main p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-main cite {
    font-size: 16px;
    color: #ecf0f1;
    font-style: normal;
}

.solution-section {
    background-color: #ffffff;
}

.solution-section h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.approach-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.approach-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.trust-building {
    background-color: #ecf0f1;
}

.trust-building h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 56px;
}

.services-showcase {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-item h3 {
    font-size: 24px;
    color: #2c3e50;
    padding: 24px 24px 12px;
    font-weight: 700;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    padding: 0 24px 24px;
}

.pricing-reveal {
    background-color: #ffffff;
}

.pricing-reveal h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 56px;
}

.pricing-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.price-card.featured {
    border-color: #d35400;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
    min-height: 50px;
}

.price {
    font-size: 40px;
    color: #d35400;
    font-weight: 800;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #34495e;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #d35400;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #e67e22;
    transform: scale(1.02);
}

.form-section {
    background-color: #ecf0f1;
    scroll-margin-top: 80px;
}

.form-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 36px;
    text-align: center;
    font-weight: 700;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #d35400;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.final-testimonials {
    background-color: #ffffff;
}

.final-testimonials h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ecf0f1;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #d35400;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    background: linear-gradient(135deg, #d35400, #e67e22);
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    color: #d35400;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-form-section {
    background-color: #f8f9fa;
}

.about-content {
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.mission-section {
    background-color: #ecf0f1;
}

.mission-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.values-section {
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ecf0f1;
    padding: 36px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.process-section {
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e67e22;
    line-height: 1;
    min-width: 80px;
}

.process-step h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #ecf0f1;
    padding: 36px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 16px;
    font-weight: 700;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.commitment-section {
    background-color: #ecf0f1;
}

.commitment-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.contact-content {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 36px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #d35400;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    min-height: 300px;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.contact-additional {
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid #d35400;
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 32px;
    font-weight: 800;
}

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 32px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 48px;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-details p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 8px;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background-color: #d35400;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: scale(1.02);
}

.btn-secondary {
    padding: 16px 40px;
    background-color: #ffffff;
    color: #d35400;
    text-decoration: none;
    border: 2px solid #d35400;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.thanks-additional {
    background-color: #ecf0f1;
}

.thanks-additional h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.thanks-additional > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.tips-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 22px;
    color: #d35400;
    margin-bottom: 16px;
    font-weight: 700;
}

.tip-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    color: #34495e;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 10px;
}

.legal-content a {
    color: #d35400;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

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

    .approach-block,
    .approach-block.reverse {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }
}