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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --text-gray: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

ul {
    list-style: none;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--highlight-color);
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 5rem;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #d63651;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    padding: 5rem;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-left p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
}

.intro-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.text-link {
    color: var(--highlight-color);
    font-weight: 600;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.8;
}

.approach-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6rem 2rem;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.approach-card {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.problem-split {
    display: flex;
    align-items: center;
}

.problem-left,
.problem-right {
    flex: 1;
}

.problem-left {
    padding: 5rem;
}

.problem-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.problem-list {
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.problem-emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.problem-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid var(--highlight-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

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

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-split {
    display: flex;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background: var(--secondary-color);
}

.testimonial-right {
    background: var(--accent-color);
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    opacity: 0.8;
}

.insight-section {
    padding: 6rem 2rem;
}

.insight-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.insights-grid {
    display: flex;
    gap: 3rem;
}

.insight-block {
    flex: 1;
}

.insight-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.cta-left,
.cta-right {
    flex: 1;
    padding: 5rem;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-left p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-large {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    margin-bottom: 1rem;
}

.cta-large:hover {
    background: #d63651;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1.2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d63651;
}

.site-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
}

.cookie-content a {
    color: var(--text-light);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--highlight-color);
    color: var(--text-light);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    min-height: 65vh;
    align-items: center;
}

.story-split {
    display: flex;
    align-items: center;
}

.story-left,
.story-right {
    flex: 1;
}

.story-left {
    padding: 5rem;
}

.story-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.story-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background: var(--bg-white);
    border-left: 4px solid var(--highlight-color);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.team-split {
    display: flex;
    align-items: center;
}

.team-left,
.team-right {
    flex: 1;
}

.team-left {
    padding: 5rem;
}

.team-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.client-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.client-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.team-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.values-section {
    padding: 6rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-detail-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.approach-right {
    padding: 5rem;
}

.approach-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d63651;
}

.services-detail {
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-detail-split.highlight {
    background: var(--bg-light);
    padding: 3rem 0;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

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

.service-detail-right {
    padding: 3rem 4rem;
}

.service-label {
    display: inline-block;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.service-checklist {
    margin-bottom: 2rem;
}

.service-checklist li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-duration {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.process-step {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.contact-info-split {
    display: flex;
    align-items: center;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding: 5rem;
}

.contact-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--highlight-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

.contact-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-contact {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-contact .cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-contact .cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.legal-page {
    padding: 4rem 2rem;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-update {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.thanks-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-left,
.thanks-right {
    flex: 1;
}

.thanks-left img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.thanks-right {
    padding: 5rem;
}

.thanks-right h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-confirmation {
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.next-steps-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.next-steps-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.next-step-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.next-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-step-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-split,
    .intro-split,
    .problem-split,
    .story-split,
    .team-split,
    .testimonials-split,
    .cta-split,
    .contact-info-split,
    .service-detail-split,
    .thanks-split,
    .page-hero-split,
    .approach-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .problem-left,
    .story-left,
    .team-left,
    .contact-left,
    .service-detail-right,
    .thanks-right,
    .approach-right {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .thanks-right h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .approach-grid,
    .insights-grid,
    .values-grid,
    .process-steps,
    .next-steps-grid,
    .cta-buttons {
        flex-direction: column;
    }

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

    .service-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .philosophy-blocks {
        gap: 1.5rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}