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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c5a572;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.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;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: #d4b584;
}

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

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

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-disclosure {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-primary,
.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #d4b584;
    transform: translateY(-2px);
}

.cta-secondary,
.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.intro-alternate {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.intro-visual,
.intro-text {
    flex: 1;
}

.intro-visual {
    background-color: var(--bg-light);
}

.intro-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    background-color: var(--bg-light);
}

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

.card-content {
    padding: 30px;
}

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

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

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

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

.btn-select:hover,
.btn-submit:hover {
    background-color: var(--secondary-color);
}

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.form-wrapper {
    flex: 1;
}

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

.selected-service {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

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

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

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

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.experience-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.trust-indicators {
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.indicator-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.trust-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-final,
.service-cta,
.cta-about,
.contact-cta {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-color);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

.footer-section p,
.footer-section li {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.detail-content,
.detail-visual {
    flex: 1;
}

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

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

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

.feature-list {
    margin: 24px 0;
    padding-left: 20px;
}

.feature-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-color);
    position: relative;
}

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

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

.about-hero {
    display: flex;
    flex-direction: column;
}

.about-hero-content {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 60px;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-image {
    height: 400px;
    background-color: var(--bg-light);
}

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

.story-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.values-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

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

.team-intro p {
    font-size: 17px;
    color: var(--text-color);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    background-color: var(--bg-light);
}

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

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.approach-alternate {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.approach-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.commitment-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.contact-hero {
    padding: 80px 40px 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.info-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
}

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

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.info-note {
    font-size: 13px !important;
    color: var(--text-light) !important;
    margin-top: 8px;
}

.contact-additional {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.additional-content {
    flex: 1;
}

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

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

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

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

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

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

.directions-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-color);
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.cta-email {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.thanks-content {
    flex: 1.5;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.thanks-message {
    margin-bottom: 50px;
    text-align: center;
}

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

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

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

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-detail {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--accent-color) !important;
}

.hours-info {
    font-size: 14px !important;
    color: var(--text-light) !important;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.updated {
    font-size: 14px;
    color: var(--text-light);
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--primary-color);
}

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

.legal-text ul {
    margin: 16px 0 24px 20px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
    list-style: disc;
}

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

.legal-text a:hover {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .hero-split,
    .intro-alternate,
    .experience-split,
    .form-container,
    .service-detail-split,
    .values-split,
    .approach-alternate,
    .contact-additional,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-content h1,
    .about-hero-content h1,
    .header-content h1,
    .contact-intro h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

    .navigation {
        padding: 20px;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 600px) {
    .hero-content,
    .intro-text,
    .experience-text,
    .values-content,
    .approach-content {
        padding: 40px 30px;
    }

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

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