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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --dark-color: #2C1810;
    --light-bg: #FFF8DC;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #999;
    --gray-dark: #333;
    --text-color: #2C2C2C;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    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;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

.hero-immersive {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 60px;
    overflow: hidden;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(139, 69, 19, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.story-intro {
    padding: 120px 20px;
    background: var(--white);
}

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-dark);
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

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

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--white);
}

.problem-box {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-box h3 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

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

.problem-item {
    flex: 1;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 10px;
}

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

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.insight-text {
    font-size: 22px;
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    font-size: 19px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

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

.insight-conclusion {
    font-size: 22px;
    font-weight: 600;
}

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

.trust-builder h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.trust-cards {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.trust-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--gray-light);
}

.testimonial {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.testimonial p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: var(--gray-mid);
}

.visual-story {
    padding: 80px 20px;
    background: var(--white);
}

.story-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-caption {
    text-align: center;
    margin-top: 25px;
}

.story-caption p {
    font-size: 18px;
    color: var(--gray-dark);
    font-style: italic;
}

.cta-mid {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-mid h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.cta-button-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-button-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

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

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

.services-reveal h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details {
    margin-bottom: 15px;
}

.service-size {
    font-size: 14px;
    color: var(--gray-mid);
}

.price-reveal {
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: var(--dark-color);
}

.testimonial-block {
    padding: 100px 20px;
    background: var(--light-bg);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 15px;
    font-style: normal;
    color: var(--gray-mid);
}

.urgency-layer {
    padding: 80px 20px;
    background: var(--white);
}

.urgency-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.urgency-note {
    font-size: 20px;
    font-weight: 600;
}

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

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray-dark);
}

.order-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

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

.sticky-cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    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: 16px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 22px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.visual-break {
    padding: 60px 20px;
    background: var(--gray-light);
}

.full-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.philosophy-list {
    list-style: none;
    margin-top: 30px;
}

.philosophy-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

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

.team-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.team-member {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.role {
    font-size: 16px;
    color: var(--gray-mid);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background: var(--white);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.services-full {
    padding: 80px 20px;
    background: var(--white);
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

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

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

.contact-section {
    padding: 80px 20px;
    background: var(--white);
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: 80px 20px;
    background: var(--gray-light);
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.faq-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.thanks-hero {
    padding: 150px 20px 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    margin-top: 60px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    box-shadow: var(--shadow);
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.order-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.order-summary p {
    font-size: 18px;
    margin-bottom: 10px;
}

.thanks-info {
    background: var(--white);
    color: var(--text-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.next-steps li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 24px;
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

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

.thanks-extra {
    padding: 80px 20px;
    background: var(--white);
}

.thanks-extra h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.tips-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.tip-card {
    flex: 1;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 10px;
}

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

.tip-card p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-page {
    padding: 100px 20px 80px;
    margin-top: 60px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.updated {
    font-size: 15px;
    color: var(--gray-mid);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-title {
        font-size: 36px;
    }

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

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .trust-cards {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta-button {
        padding: 14px 25px;
        font-size: 15px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

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

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

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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