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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8b76;
    --accent-color: #d4a574;
    --text-dark: #1a2e25;
    --text-medium: #4a5c54;
    --text-light: #7a8c84;
    --bg-light: #f8f9f7;
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e1e7e3;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-section {
    background-color: var(--bg-cream);
    padding: 80px 30px;
    position: relative;
}

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 38px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-section {
    background-color: var(--bg-white);
    padding: 90px 30px;
}

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

.intro-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-container p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.problem-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.problem-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.ref-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.ref-link:hover {
    text-decoration: underline;
}

.insight-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 110px 30px;
}

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

.insight-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--bg-white);
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 6px;
}

.insight-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--bg-white);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.insight-card a {
    color: var(--accent-color);
}

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

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
    flex-direction: row-reverse;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.approach-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.services-preview {
    background-color: var(--bg-cream);
    padding: 100px 30px;
}

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

.services-container h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.services-intro {
    font-size: 19px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-block {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.all-services-link {
    text-align: center;
    margin-top: 50px;
}

.all-services-link a {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.testimonial-wrapper h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

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

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

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

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

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

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

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

.contact-form {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-display p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.selected-service-display strong {
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    font-style: italic;
}

.references-section {
    background-color: var(--bg-white);
    padding: 50px 30px;
}

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

.references-container h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.references-list a {
    color: var(--primary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

.footer-column ul li a {
    font-size: 14px;
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

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

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

.page-header {
    background-color: var(--bg-cream);
    padding: 80px 30px 60px;
    text-align: center;
}

.header-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.header-container p {
    font-size: 19px;
    color: var(--text-medium);
}

.story-section {
    background-color: var(--bg-white);
    padding: 90px 30px;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-container img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 50px;
    background-color: var(--bg-light);
}

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

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

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

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

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

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

.philosophy-block {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
}

.philosophy-block h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.approach-detail-section {
    background-color: var(--bg-white);
    padding: 90px 30px;
}

.approach-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.approach-detail-text {
    flex: 1;
}

.approach-detail-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.approach-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.approach-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

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

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

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

.value-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-about-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 30px;
    text-align: center;
}

.cta-about-container h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-about-container p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail-section {
    background-color: var(--bg-white);
    padding: 70px 30px;
}

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

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-detail-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-duration {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-form-section {
    background-color: var(--bg-cream);
    padding: 90px 30px;
}

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

.service-form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

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

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

.contact-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-visual-section {
    background-color: var(--bg-light);
    padding: 0;
}

.contact-visual-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

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

.contact-approach-section {
    background-color: var(--bg-cream);
    padding: 90px 30px;
}

.contact-approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-approach-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
}

.approach-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.location-section {
    background-color: var(--bg-white);
    padding: 90px 30px;
}

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

.location-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-container > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.location-detail-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
}

.location-detail-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.location-detail-item p {
    font-size: 15px;
    color: var(--text-medium);
}

.cta-contact-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
    text-align: center;
}

.cta-contact-container h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-contact-container p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-medium);
}

.thanks-section {
    background-color: var(--bg-white);
    padding: 90px 30px;
}

.thanks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-selected {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-top: 8px;
}

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

.thanks-visual {
    flex: 0 0 40%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.thanks-additional-info {
    background-color: var(--bg-cream);
    padding: 90px 30px;
}

.additional-info-container {
    max-width: 1100px;
    margin: 0 auto;
}

.additional-info-container h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.info-card a {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-medium);
}

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

    .nav-links {
        gap: 20px;
    }

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

    .problem-container,
    .approach-container,
    .approach-detail-container,
    .service-detail-block,
    .thanks-container {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .cookie-btn {
        width: 100%;
    }
}