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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

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

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

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

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

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

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.select-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    align-items: stretch;
    background-color: #2c3e50;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    color: #ffffff;
}

.testimonial-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
}

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

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    color: #ecf0f1;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #bdc3c7;
}

.testimonial-image {
    flex: 1;
    background-color: #1a252f;
    overflow: hidden;
}

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

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.form-wrapper {
    flex: 1;
}

.main-form {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
}

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

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

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

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

.cta-submit {
    padding: 16px 45px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.cta-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    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: #95a5a6;
    color: #ffffff;
}

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

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

.about-hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.about-hero-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.philosophy-split {
    display: flex;
    align-items: stretch;
}

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

.philosophy-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.philosophy-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

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

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

.team-member-split {
    display: flex;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.member-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.approach-split {
    display: flex;
    align-items: stretch;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.approach-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #2c3e50;
}

.values-section .section-header-centered h2 {
    color: #ffffff;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #34495e;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

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

.services-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.services-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 40px 100px;
    background-color: #ffffff;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-features li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.services-cta-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

.services-cta-content .cta-primary {
    background-color: #3498db;
}

.services-cta-content .cta-primary:hover {
    background-color: #2980b9;
}

.contact-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-email {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.map-replacement h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.map-replacement ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.map-replacement ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.contact-faq {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 35px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service-display {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps-list {
    text-align: left;
    margin: 0 auto 40px;
    max-width: 600px;
    padding-left: 20px;
}

.next-steps-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5a6c7d;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.thanks-contact-info {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact-info p {
    font-size: 15px;
    color: #5a6c7d;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 700;
}

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

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

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

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.cookies-table td {
    padding: 15px;
    font-size: 15px;
    color: #5a6c7d;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .testimonials-split,
    .about-hero-split,
    .philosophy-split,
    .approach-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 36px;
    }

    .hero-content,
    .intro-content,
    .service-info,
    .testimonial-content,
    .about-hero-content,
    .philosophy-content,
    .approach-content,
    .service-detail-content {
        padding: 50px 30px;
    }

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

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

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

    .values-split-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}