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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8e7c68;
    --color-accent: #d4a574;
    --color-bg-light: #f8f6f4;
    --color-bg-white: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-gray: #666666;
    --color-border: #e0e0e0;
    --color-shadow: rgba(0, 0, 0, 0.1);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--color-shadow);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-solid {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px var(--color-shadow);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.header-overlay .nav-brand {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-overlay .nav-links a {
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.ad-notice {
    font-size: 13px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header-solid .ad-notice {
    background-color: var(--color-bg-light);
    color: var(--color-text-gray);
    border: 1px solid var(--color-border);
}

.hero-visual-full {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-image-container 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, 62, 80, 0.7) 0%, rgba(142, 124, 104, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title-large {
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 900px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 24px;
    color: white;
    margin-bottom: 45px;
    max-width: 700px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--color-accent);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    background-color: #c89460;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.intro-story h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 35px;
    line-height: 1.3;
}

.intro-story p {
    font-size: 19px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
}

.visual-break {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--color-bg-light);
}

.image-offset-left {
    flex: 1.2;
    overflow: hidden;
    background-color: var(--color-secondary);
}

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

.text-offset-right {
    flex: 1;
    padding: 80px 60px;
}

.text-offset-right h3 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.text-offset-right p {
    font-size: 18px;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.services-grid-offset {
    padding: 100px 40px;
    background-color: var(--color-bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-header-center p {
    font-size: 20px;
    color: var(--color-text-gray);
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-large,
.service-card-small,
.service-card-medium {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-white);
    box-shadow: 0 6px 30px var(--color-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-large:hover,
.service-card-small:hover,
.service-card-medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-card-large {
    flex-direction: row;
}

.service-card-small {
    flex-direction: row-reverse;
    max-width: 1100px;
    margin-left: auto;
}

.service-card-medium {
    flex-direction: row;
    max-width: 1200px;
    margin-right: auto;
}

.service-image {
    flex: 1;
    min-height: 350px;
    background-color: var(--color-secondary);
}

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

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

.service-content h3 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    color: var(--color-text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    color: var(--color-accent);
    font-weight: 700;
    margin: 25px 0;
}

.service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.trust-building {
    padding: 120px 40px;
    background-color: var(--color-bg-light);
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.trust-text p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: var(--color-secondary);
}

.trust-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: var(--color-bg-white);
    text-align: center;
}

.testimonials-inline h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 70px;
}

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

.testimonial {
    background-color: var(--color-bg-light);
    padding: 45px 60px;
    border-radius: 8px;
    border-left: 5px solid var(--color-accent);
    text-align: left;
}

.testimonial:nth-child(2) {
    margin-left: 100px;
}

.testimonial:nth-child(3) {
    margin-right: 100px;
}

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

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

.form-section-visual {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-secondary);
}

.form-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.form-container-overlay {
    position: relative;
    width: 100%;
    max-width: 700px;
    z-index: 2;
}

.form-card {
    background-color: var(--color-bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.form-card h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.form-card > p {
    font-size: 17px;
    color: var(--color-text-gray);
    margin-bottom: 40px;
}

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-accent);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #c89460;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefits-reveal {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

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

.content-centered h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 70px;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 40px 30px;
    background-color: var(--color-bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--color-shadow);
    text-align: center;
}

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

.benefit-item p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.footer-extended {
    background-color: var(--color-primary);
    color: white;
    padding-top: 60px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.page-hero-minimal {
    padding: 150px 40px 80px;
    text-align: center;
    background-color: var(--color-bg-light);
}

.page-hero-minimal h1 {
    font-size: 56px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.page-hero-minimal p {
    font-size: 22px;
    color: var(--color-text-gray);
}

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

.content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-image-main {
    flex: 1;
    background-color: var(--color-secondary);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.philosophy-section h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 35px;
    text-align: center;
}

.philosophy-section p {
    font-size: 19px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.team-showcase h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 70px;
    text-align: center;
}

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

.approach-card {
    flex: 1;
    min-width: 260px;
    max-width: 550px;
    padding: 45px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.approach-card p {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.values-visual {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

.content-wide-reverse {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-direction: row-reverse;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.values-text p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-image {
    flex: 1;
    background-color: var(--color-secondary);
}

.values-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

.expertise-section h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 35px;
    text-align: center;
}

.expertise-section p {
    font-size: 19px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 50px;
    background-color: var(--color-primary);
    border-radius: 12px;
    color: white;
}

.cta-box-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box-centered p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--color-accent);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #c89460;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-detailed {
    padding: 80px 40px;
    background-color: var(--color-bg-white);
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 26px;
    color: var(--color-primary);
    margin: 30px 0 15px;
}

.service-detail-content .service-intro {
    font-size: 19px;
    color: var(--color-text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.service-detail-content ul li {
    font-size: 17px;
    color: var(--color-text-gray);
    padding: 8px 0 8px 30px;
    position: relative;
}

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

.service-detail-content > p {
    font-size: 17px;
    color: var(--color-text-gray);
    margin: 10px 0;
}

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

.service-select-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-primary);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-large:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-detail-image {
    flex: 1;
    background-color: var(--color-secondary);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.booking-info {
    padding: 80px 40px;
    background-color: var(--color-bg-light);
}

.booking-info h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.booking-info p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.form-card-centered {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px var(--color-shadow);
}

.form-card-centered h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

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

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.contact-detail {
    margin-bottom: 40px;
}

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

.contact-detail p {
    font-size: 18px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.contact-note {
    font-size: 16px;
    color: var(--color-text-gray);
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    background-color: var(--color-secondary);
}

.contact-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

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

.contact-additional h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.contact-additional p {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 100px;
    background-color: var(--color-bg-light);
}

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

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

.thanks-message {
    font-size: 22px;
    color: var(--color-text-gray);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--color-bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service {
    font-size: 19px;
    color: var(--color-text-dark);
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    font-size: 18px;
    color: var(--color-text-gray);
    padding: 15px 0 15px 50px;
    position: relative;
    counter-increment: step-counter;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 35px;
    height: 35px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: var(--color-accent);
    color: white;
}

.button-primary:hover {
    background-color: #c89460;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

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

.legal-content h1 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.legal-update {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 30px;
    color: var(--color-primary);
    margin: 50px 0 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin: 35px 0 15px;
}

.legal-content h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin: 25px 0 12px;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 17px;
    color: var(--color-text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title-large {
        font-size: 38px;
    }

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

    .visual-break,
    .content-split,
    .content-wide,
    .content-wide-reverse,
    .service-detail-block,
    .contact-layout {
        flex-direction: column;
    }

    .testimonial:nth-child(2),
    .testimonial:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card-small {
        flex-direction: column;
        margin-left: 0;
    }

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