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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    background: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-split {
    padding: 4rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #333333;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

.intro-split {
    padding: 6rem 0;
    background: #f9f9f9;
}

.values-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.services-split {
    padding: 6rem 0;
    background: #ffffff;
}

.service-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.8;
}

.process-split {
    padding: 6rem 0;
    background: #f9f9f9;
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.trust-section {
    padding: 5rem 0;
    background: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.trust-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.form-split {
    padding: 6rem 0;
    background: #f9f9f9;
}

.split-form {
    flex: 1;
}

.form-note {
    font-size: 0.95rem;
    color: #6a6a6a;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    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: #1a1a1a;
}

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333333;
}

.link-arrow {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    padding-right: 1.5rem;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #808080;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 2rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #e8e8e8;
}

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

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

.page-hero {
    padding: 4rem 0;
    background: #f9f9f9;
}

.story-split {
    padding: 6rem 0;
    background: #ffffff;
}

.philosophy-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
}

.philosophy-card {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.philosophy-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.team-split {
    padding: 6rem 0;
    background: #ffffff;
}

.clients-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.clients-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.clients-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.client-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.client-quote cite {
    font-style: normal;
    font-size: 1rem;
    color: #6a6a6a;
}

.approach-split {
    padding: 6rem 0;
    background: #ffffff;
}

.cta-section {
    padding: 5rem 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-container .cta-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-container .cta-primary:hover {
    background: #e8e8e8;
}

.services-intro {
    padding: 4rem 0;
    background: #f9f9f9;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-container p {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.service-detail-split {
    padding: 6rem 0;
    background: #ffffff;
}

.service-detail-split.alt {
    background: #f9f9f9;
}

.service-detail-split h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.faq-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-info-split {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-item a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

.how-to-reach {
    padding: 5rem 0;
    background: #f9f9f9;
}

.reach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.reach-grid {
    display: flex;
    gap: 2.5rem;
}

.reach-item {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.reach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reach-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

.visit-info-split {
    padding: 6rem 0;
    background: #ffffff;
}

.online-consultation {
    padding: 5rem 0;
    background: #f9f9f9;
}

.online-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.online-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.online-container > p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.online-benefits {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.response-info {
    padding: 5rem 0;
    background: #ffffff;
}

.response-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.response-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.response-container p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-hero {
    padding: 6rem 0;
    background: #f9f9f9;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #1a1a1a;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.2rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.tips-section {
    padding: 5rem 0;
    background: #ffffff;
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tips-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.tips-grid {
    display: flex;
    gap: 2.5rem;
}

.tip-card {
    flex: 1;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.tip-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tip-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 0;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-container table th,
.legal-container table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.legal-container table th {
    background: #f9f9f9;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-container table td {
    color: #4a4a4a;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
}

.gdpr-table th,
.cookies-table th {
    background: #f9f9f9;
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .split-layout {
        flex-direction: column;
        padding: 0 1rem;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .values-grid,
    .trust-grid,
    .philosophy-grid,
    .reach-grid,
    .online-benefits,
    .tips-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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