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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.97);
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.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-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: #ffffff;
}

.btn-accept:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.header-split {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8B7355;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

.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;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 36px;
    color: #555;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #8B7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #75614a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.intro-section {
    background: #fafafa;
    padding: 80px 0;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
    line-height: 1.2;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 320px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.service-info {
    padding: 28px 24px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.process-section {
    background: #fafafa;
    padding: 80px 0;
}

.process-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

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

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #8B7355;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.process-image {
    flex: 1;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background: #8B7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #75614a;
    transform: translateY(-2px);
}

.footer-main {
    background: #2c2c2c;
    color: #cccccc;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.email-display {
    color: #cccccc;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.disclaimer {
    margin-bottom: 16px;
    line-height: 1.6;
}

.page-hero {
    background: linear-gradient(135deg, #8B7355 0%, #a08570 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro-split {
    padding: 80px 0;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

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

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-image-right {
    flex: 1;
    overflow: hidden;
}

.about-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 40px;
    background: #fafafa;
}

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

.values-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-section {
    padding: 80px 0;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-text {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.team-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.materials-section {
    padding: 80px 40px;
    background: #fafafa;
}

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

.materials-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.materials-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.material-block {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.material-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8B7355;
}

.material-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cta-section-about {
    padding: 100px 40px;
    background: linear-gradient(135deg, #8B7355 0%, #a08570 100%);
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content-centered p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content-centered .cta-primary {
    background: #ffffff;
    color: #8B7355;
}

.cta-content-centered .cta-primary:hover {
    background: #f5f5f5;
}

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

.service-detail-item {
    padding: 80px 0;
}

.service-detail-item.reverse {
    background: #fafafa;
}

.service-detail-split {
    display: flex;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    font-size: 15px;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: 700;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #8B7355;
    margin: 24px 0;
}

.btn-cta-inline {
    display: inline-block;
    padding: 14px 28px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-inline:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

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

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

.service-process-overview {
    padding: 100px 40px;
    background: #f5f5f5;
}

.process-overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.process-overview-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.process-overview-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

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

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #8B7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-page-content {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.opening-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
}

.contact-note h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: #2c2c2c;
}

.map-overlay p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-hint {
    font-size: 14px;
    color: #666;
}

.faq-section {
    padding: 80px 40px;
    background: #fafafa;
}

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

.faq-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
    font-size: 16px;
    color: #555;
}

.thanks-details strong {
    color: #8B7355;
}

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

.thanks-next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

.next-step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #8B7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #2c2c2c;
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #8B7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #75614a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c2c2c;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.legal-page {
    padding: 80px 40px;
    background: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 16px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-container h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-container ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.legal-container a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #75614a;
}

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .team-split,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card {
        width: calc(50% - 15px);
    }

    .nav-container {
        padding: 16px 24px;
    }

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-container {
        padding: 40px 24px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 14px;
    }
}