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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #4a4a4a;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --highlight-color: #c4a574;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 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: color 0.3s ease;
}

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

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 11px;
    color: var(--light-text);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

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

.main-nav a:hover {
    color: var(--highlight-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--bg-light);
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    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;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 80px 40px;
}

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

.intro-left {
    flex: 1;
}

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

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

.intro-right {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-right img {
    width: 100%;
    height: auto;
}

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

.services-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

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

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section-split {
    display: flex;
    min-height: 500px;
}

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

.form-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
}

.form-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-display {
    background-color: var(--highlight-color);
    color: var(--bg-white);
    padding: 12px 20px;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

.trust-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    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: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 11px;
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto 0;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

.hero-text-block h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-text-block p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-block {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.page-hero-simple h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.page-hero-simple p {
    font-size: 18px;
    color: var(--light-text);
}

.about-content-split {
    padding: 80px 40px;
}

.content-left {
    max-width: 600px;
    margin: 0 auto 60px;
}

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

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

.content-right {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

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

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

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

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

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

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.team-section-split {
    display: flex;
    min-height: 500px;
}

.team-left {
    flex: 1;
    background-color: var(--accent-color);
}

.team-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.services-detailed {
    padding: 40px;
}

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

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

.service-detail-left {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-left img {
    width: 100%;
    height: auto;
}

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

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

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

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-features ul {
    list-style-position: inside;
    color: var(--light-text);
}

.service-features li {
    margin-bottom: 8px;
    font-size: 15px;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

.cta-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

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

.contact-split {
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.service-confirmation {
    margin: 20px 0;
    font-size: 17px;
    color: var(--text-color);
}

.legal-page {
    padding: 60px 40px;
}

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

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

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin-bottom: 16px;
    margin-left: 20px;
}

.legal-container li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 8px;
}

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

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

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-container,
    .form-section-split,
    .team-section-split,
    .service-detail-split,
    .contact-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .services-grid-split {
        gap: 20px;
    }

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