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

:root {
    --primary-color: #2C3E50;
    --accent-color: #8B7355;
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --bg-light: #F9F7F4;
    --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-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

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

.story-intro {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.narrow-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.insight-reveal {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.insight-visual {
    flex: 1;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.problem-amplify {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.problem-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.approach-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.approach-image {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-flow {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 45px;
    border-left: 5px solid var(--accent-color);
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.services-reveal {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-intro p {
    font-size: 19px;
    color: var(--text-light);
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-light);
    padding: 40px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    flex: 0 0 350px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: auto;
}

.cta-primary {
    padding: 90px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #9F826A;
    transform: translateY(-2px);
}

.trust-building {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 55px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.form-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 45px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #34495E;
}

.final-cta {
    padding: 70px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.final-content p {
    font-size: 22px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #9F826A;
}

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

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

.page-hero {
    padding: 100px 20px 80px;
    background-color: var(--bg-light);
}

.hero-text-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text-center p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.philosophy-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-block {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
}

.philosophy-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.philosophy-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-approach {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.approach-content h2 {
    text-align: center;
    margin-bottom: 25px;
}

.approach-content > p {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.process-visual {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.values-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.impact-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.impact-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.impact-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.impact-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.impact-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.cta-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background-color: var(--bg-light);
    padding: 50px;
}

.service-header {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.service-visual {
    flex: 0 0 400px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-intro {
    flex: 1;
}

.service-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-body h3 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 30px;
    color: var(--primary-color);
}

.service-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-body li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.service-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.service-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-comparison {
    padding: 90px 20px;
    background-color: var(--bg-white);
}

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

.comparison-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-guide {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.guide-option {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
}

.guide-option h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guide-option p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-info-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-light);
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-visual {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.visit-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.visit-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.visit-content > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.visit-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-block {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
}

.detail-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-contact {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.faq-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-hero {
    padding: 120px 20px 80px;
    background-color: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-content p {
    font-size: 22px;
    color: var(--text-light);
}

.thanks-details {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.next-steps {
    flex: 1.5;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-visual {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.while-waiting {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.waiting-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.waiting-content > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-dark);
}

.preparation-tips {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
}

.tip-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.confirmation-note {
    padding: 70px 20px;
    background-color: var(--bg-white);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
    background-color: var(--bg-light);
}

.note-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.note-content p:last-child {
    margin-bottom: 0;
}

.thanks-explore {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

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

.explore-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 45px;
    color: var(--primary-color);
    font-weight: 700;
}

.explore-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.explore-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-page {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .split-layout,
    .story-layout,
    .asymmetric-layout,
    .contact-layout,
    .service-header,
    .details-container {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}