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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.header-left .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 2.5rem;
}

.header-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a252f;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.value-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.value-content {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.services-grid {
    padding: 5rem 5% 6rem;
    background-color: #ffffff;
}

.section-intro-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-intro-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.section-intro-center p {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.7;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-details {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 0 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-split {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6c757d;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    color: #2c3e50;
    font-size: 0.95rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

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

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #2980b9;
}

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

.trust-content {
    flex: 1.2;
    padding: 5rem 7%;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e9ecef;
}

.trust-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background-color: #1a252f;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #adb5bd;
}

.footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #adb5bd;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-disclaimer {
    background-color: #131b23;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #343a40;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.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.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

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

.btn-reject:hover {
    background-color: #343a40;
}

.page-hero-split {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #e9ecef;
}

.about-story-split {
    display: flex;
    align-items: stretch;
    padding: 5rem 0;
}

.story-content {
    flex: 1;
    padding: 3rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

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

.approach-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.approach-content {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.expertise-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a252f;
}

.expertise-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    padding: 2rem 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

.services-detail {
    padding: 3rem 0;
}

.service-full-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
}

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

.service-full-content {
    flex: 1;
    padding: 4rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.service-full-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.2rem;
}

.service-includes {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin: 1.5rem 0;
}

.service-full-image {
    flex: 1;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.cta-section-center {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.cta-section-center p {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.location-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a252f;
}

.location-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.location-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.location-note p {
    font-size: 0.95rem;
    color: #856404;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-confirmation p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.selected-service-name {
    font-weight: 700;
    color: #3498db;
    font-size: 1.1rem;
}

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

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.contact-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-reminder p {
    font-size: 0.95rem;
    color: #495057;
}

.legal-page {
    padding: 3rem 5%;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a252f;
}

.last-updated {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #495057;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #495057;
}

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

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0.5rem;
}

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

.legal-container a:hover {
    color: #2980b9;
}

.contact-legal {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.contact-legal h3 {
    margin-top: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #495057;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .service-card-split,
    .trust-split,
    .about-story-split,
    .team-approach-split,
    .service-full-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-full-split.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .header-right {
        gap: 1.5rem;
    }

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

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

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

    .step-list {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-right {
        display: none;
    }

    .hero-left {
        padding: 3rem 5%;
    }

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

    .hero-left p {
        font-size: 1.1rem;
    }

    .service-details,
    .service-full-content {
        padding: 2rem;
    }

    .section-intro-center h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

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