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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    --success-color: #00b894;
}

html {
    scroll-behavior: smooth;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.hero-split {
    margin-top: 80px;
    padding: 5rem 5% 3rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.intro-statement {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.statement-wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.statement-wrap h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.statement-wrap p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.problem-split,
.proof-section {
    padding: 5rem 5%;
}

.split-container,
.proof-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.approach-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.approach-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.proof-content {
    flex: 1;
}

.proof-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

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

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

.proof-visual {
    flex: 1;
}

.proof-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial-inline {
    padding: 4rem 5%;
    background: var(--secondary-color);
    color: var(--white);
}

.testimonial-inline blockquote {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-inline cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.services-intro {
    padding: 5rem 5%;
}

.services-header-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-visual {
    flex: 1;
}

.services-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-selection {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.highlighted {
    border: 3px solid var(--accent-color);
    position: relative;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

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

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

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

.btn-select:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 5%;
}

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-icon {
    color: var(--success-color);
    font-size: 1.2rem;
    font-weight: bold;
}

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

.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: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

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

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

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #d63851;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-actions {
    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: all 0.3s;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.page-hero {
    margin-top: 80px;
    padding: 4rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 5%;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.philosophy-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 5%;
}

.team-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-content {
    flex: 1;
}

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

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.expertise-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--white);
}

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

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.expertise-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.values-statement {
    padding: 5rem 5%;
}

.large-quote {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.large-quote p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.services-detail {
    padding: 5rem 5%;
}

.services-intro-text {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-detailed {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

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

.service-detail-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

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

.service-detail-content ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.highlighted-service .service-detail-split {
    border: 3px solid var(--accent-color);
}

.services-guarantee {
    padding: 4rem 5%;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.services-cta {
    padding: 5rem 5%;
    text-align: center;
}

.contact-main {
    padding: 5rem 5%;
}

.contact-info-section {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-approach {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
}

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

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 5%;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 5%;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.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: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.resources-content {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.resources-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.resource-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-contact {
    padding: 5rem 5%;
    text-align: center;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 5%;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .split-container,
    .proof-split,
    .services-header-split,
    .form-split,
    .story-split,
    .team-split,
    .contact-info-section,
    .service-detail-split {
        flex-direction: column;
    }

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

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

    .approach-card,
    .philosophy-item,
    .service-card,
    .step-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .statement-wrap h2,
    .split-content h3,
    .proof-content h3,
    .approach-header h2,
    .services-text h2,
    .services-container h2,
    .form-intro h2,
    .final-cta-content h2,
    .story-content h2,
    .philosophy-header h2,
    .team-content h2,
    .expertise-content h2,
    .large-quote p,
    .cta-content h2,
    .services-intro-text h2,
    .guarantee-content h2,
    .contact-info h2,
    .approach-content h2,
    .faq-content h2,
    .thanks-content h1,
    .next-steps-content h2,
    .resources-content h2,
    .legal-content h1 {
        font-size: 1.8rem;
    }

    .navbar {
        padding: 1rem 3%;
    }

    .hero-split,
    .intro-statement,
    .problem-split,
    .approach-section,
    .proof-section,
    .testimonial-inline,
    .services-intro,
    .services-selection,
    .form-section,
    .final-cta,
    .footer,
    .page-hero,
    .about-story,
    .philosophy-section,
    .team-approach,
    .expertise-section,
    .values-statement,
    .cta-about,
    .services-detail,
    .services-guarantee,
    .services-cta,
    .contact-main,
    .contact-approach,
    .faq-section,
    .thanks-hero,
    .next-steps,
    .thanks-resources,
    .thanks-contact,
    .legal-page {
        padding-left: 3%;
        padding-right: 3%;
    }

    .service-detail-split {
        padding: 2rem;
    }
}
