* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #2d5f3f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e8ecef;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #3d7f5f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d5f3f;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-overview {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e8ecef;
}

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

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

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex: 1;
}

.service-info .price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.btn-service-select {
    padding: 12px 28px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-select:hover {
    background-color: #3d7f5f;
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.selected-service-display {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
    margin-top: 20px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
}

.selected-service-display span {
    display: block;
    font-size: 16px;
    color: #5a6c7d;
}

#selectedServicePrice {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    margin-top: 5px;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d7f5f;
}

.why-us-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.why-us-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.disclaimer-section {
    padding: 40px 40px 80px;
    background-color: #ffffff;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background-color: #fff3cd;
    border-left: 4px solid #f0ad4e;
    border-radius: 6px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    padding: 100px 40px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-text-wide {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text-wide h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-wide p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-image-offset {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.values-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.values-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.story-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.story-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.team-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-header-center p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section-alt {
    padding: 80px 40px;
    background-color: #2d5f3f;
}

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

.cta-content-center h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.services-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-detailed {
    padding: 40px 40px 80px;
    background-color: #f8f9fa;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

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

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

.service-detail-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d5f3f;
}

.service-detail-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-cta {
    padding: 80px 40px;
    background-color: #2c3e50;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info-block > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.location-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.location-map-placeholder {
    background-color: #e8ecef;
    padding: 80px 40px;
    border-radius: 8px;
    font-size: 18px;
    color: #7f8c8d;
}

.contact-cta {
    padding: 80px 40px;
    background-color: #2d5f3f;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.selected-service-info {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-item h3 {
    font-size: 24px;
    color: #2d5f3f;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-page {
    padding: 60px 40px 100px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-content-split,
    .why-us-split,
    .form-container-split,
    .about-intro-split,
    .story-split,
    .services-intro-split,
    .service-detail-item,
    .contact-layout {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1,
    .intro-text h2,
    .why-us-content h2,
    .form-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-split {
        padding: 15px 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content,
    .intro-section,
    .services-overview,
    .form-section,
    .why-us-section {
        padding: 40px 20px;
    }

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

    .service-card {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}