* {
    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;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 35px;
}

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

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 80px 6% 80px 8%;
}

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

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

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 600px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.intro-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 450px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.25;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.values-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 45px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.values-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 500px;
    overflow: hidden;
}

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

.services-section {
    padding: 100px 6%;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #555;
}

.services-form-container {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.services-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

.service-item.selected {
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.form-container h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    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: #3498db;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
}

.submit-btn {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a252f;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.testimonial-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background-color: #f8f9fa;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 450px;
    overflow: hidden;
}

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

.cta-final {
    padding: 100px 6%;
    background-color: #2c3e50;
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-left p {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.6;
}

.cta-right {
    flex: 0 0 auto;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 6% 40px;
    background-color: #1a1a1a;
    color: #ecf0f1;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    margin-top: 20px;
    color: #808080;
    line-height: 1.6;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #3498db;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px 6%;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background-color: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 80px 8%;
}

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.page-hero-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 500px;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

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

.story-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 450px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
}

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

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

.philosophy-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background-color: #f8f9fa;
    align-items: center;
}

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

.philosophy-content {
    flex: 1;
}

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

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

.philosophy-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 450px;
    overflow: hidden;
}

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

.team-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 450px;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 26px;
    color: #1a1a1a;
}

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

.values-full {
    padding: 100px 6%;
    background-color: #f8f9fa;
}

.values-full h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-box {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.cta-about {
    padding: 100px 6%;
    text-align: center;
    background-color: #2c3e50;
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ecf0f1;
}

.service-detail-split {
    display: flex;
    padding: 80px 6%;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

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

.service-features li {
    padding: 12px 0 12px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-link {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    overflow: hidden;
}

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

.process-section {
    padding: 100px 6%;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-split {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.cta-services {
    padding: 100px 6%;
    text-align: center;
    background-color: #2c3e50;
}

.cta-services h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 18px 55px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #ecf0f1;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-hours {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
}

.contact-hours h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.day {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.time {
    font-size: 16px;
    color: #555;
}

.contact-note {
    margin-top: 24px;
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.legal-info {
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.legal-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 6%;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #e3f2fd;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 50px;
}

.service-confirmation {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-name {
    font-size: 24px;
    color: #1a1a1a;
}

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

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 36px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    margin: 0 8px;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #6c7a7b;
}

.legal-page {
    padding: 80px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

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

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.legal-update p {
    font-size: 15px;
    color: #7f8c8d;
}

.cookie-table {
    margin-top: 24px;
}

.cookie-row {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.cookie-name {
    font-size: 18px;
    margin-bottom: 12px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .values-split,
    .services-form-container,
    .testimonial-split,
    .cta-split,
    .page-hero-split,
    .story-split,
    .philosophy-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-image,
    .intro-image,
    .values-image,
    .testimonial-image,
    .page-hero-image,
    .story-image,
    .philosophy-image,
    .team-image,
    .service-detail-image {
        min-height: 400px;
    }

    .values-container,
    .process-split,
    .next-steps {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        position: static;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .values-content h2,
    .testimonial-content h2 {
        font-size: 28px;
    }

    .services-header h2,
    .cta-left h2,
    .cta-about-content h2,
    .cta-services h2 {
        font-size: 32px;
    }

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

    .footer-split {
        flex-direction: column;
    }
}