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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    background: #f8f8f8;
    border-radius: 3px;
    flex-shrink: 0;
}

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

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

.main-nav a:hover {
    color: #6b5d54;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: #fafafa;
}

.hero-text-container h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: #6b5d54;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-height: 600px;
}

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

.services-preview {
    background: #f9f7f5;
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #6b5d54;
}

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6b5d54;
    border: 2px solid #6b5d54;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

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

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

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

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

.approach-content {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.approach-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    font-size: 16px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #6b5d54;
    border: 2px solid #6b5d54;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline:hover {
    background: #6b5d54;
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
    background: #f9f7f5;
    padding: 40px;
    border-radius: 6px;
}

.quote {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #6b5d54;
}

.cta-section {
    background: #6b5d54;
    padding: 90px 0;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    display: inline-block;
    background: #ffffff;
    color: #6b5d54;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.main-footer {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 70px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px;
    color: #888;
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.97);
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

.btn-accept {
    background: #6b5d54;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: #f9f7f5;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    max-height: 550px;
}

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

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

.philosophy-split-reverse {
    display: flex;
    gap: 70px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    max-height: 500px;
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.philosophy-list li {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.philosophy-list strong {
    color: #1a1a1a;
}

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

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

.team-grid {
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    height: 380px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.team-member h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 14px;
    color: #6b5d54;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.equipment-section {
    background: #f9f7f5;
    padding: 80px 0;
}

.equipment-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.equipment-content {
    flex: 1;
}

.equipment-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.equipment-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.equipment-image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    max-height: 450px;
}

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

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

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    padding: 35px;
    background: #fafafa;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.services-full {
    padding: 60px 0 80px;
}

.service-detail-card {
    margin-bottom: 70px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    max-height: 500px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 15px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b5d54;
    font-weight: 700;
    font-size: 20px;
}

.pricing-box {
    background: #f9f7f5;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #6b5d54;
}

.btn-select-service {
    background: #6b5d54;
    color: #ffffff;
    border: none;
    padding: 16px 38px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.custom-quote-section {
    background: #2c2c2c;
    padding: 70px 0;
}

.custom-quote-box {
    text-align: center;
    color: #ffffff;
}

.custom-quote-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.custom-quote-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

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

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

.why-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-section {
    padding: 60px 0 80px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-form-container {
    flex: 1.2;
}

.contact-form-container h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #fafafa;
    padding: 40px;
    border-radius: 6px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b5d54;
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-label span {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.checkbox-label a {
    color: #6b5d54;
    text-decoration: underline;
}

.btn-submit {
    background: #6b5d54;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

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

.contact-info-container {
    flex: 0.8;
}

.contact-info-container h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.hours-note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

.transport-list {
    list-style: none;
    margin-top: 12px;
}

.transport-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-left: 22px;
    position: relative;
}

.transport-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b5d54;
}

.faq-section {
    background: #f9f7f5;
    padding: 80px 0;
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-box h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #f9f7f5;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 16px;
    color: #4a4a4a;
}

.thanks-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.next-steps {
    background: #fafafa;
    padding: 80px 0;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6b5d54;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    padding: 60px 0 80px;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-content a {
    color: #6b5d54;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-layout,
    .approach-split,
    .story-split,
    .philosophy-split-reverse,
    .equipment-layout,
    .service-detail-layout,
    .contact-split {
        flex-direction: column;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .why-grid,
    .steps-grid,
    .faq-grid {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 40px;
    }

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

    .hero-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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