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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f7fafc;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.2s;
}

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

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

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

.hero-image-side img {
    width: 100%;
    height: 100%;
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-content-side h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-side p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2b6cb0;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2c5282;
}

.intro-split {
    display: flex;
    min-height: 600px;
}

.intro-text-side {
    flex: 1;
    padding: 5rem 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text-side h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text-side p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.intro-visual-side {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.intro-visual-side img {
    width: 100%;
    height: 100%;
}

.services-showcase {
    padding: 5rem 4rem;
    background: #f7fafc;
}

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

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

.section-header-center p {
    font-size: 1.2rem;
    color: #718096;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.service-image-left,
.service-image-right {
    flex: 0 0 45%;
    background-color: #cbd5e0;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
}

.service-content-right,
.service-content-left {
    flex: 1;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-right h3,
.service-content-left h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-content-right p,
.service-content-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2c5282;
}

.form-section-split {
    display: flex;
    min-height: 700px;
    background: #ffffff;
}

.form-visual-left {
    flex: 1;
    position: relative;
    background-color: #cbd5e0;
    overflow: hidden;
}

.form-visual-left img {
    width: 100%;
    height: 100%;
}

.form-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
}

.form-info-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.form-info-overlay p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.form-content-right {
    flex: 1;
    padding: 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-right h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selected-service-info {
    font-size: 1.1rem;
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #2c5282;
}

.trust-section {
    padding: 5rem 8rem;
    background: #edf2f7;
}

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

.trust-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.75rem;
    font-weight: 700;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    padding: 1.25rem;
    background: #f7fafc;
    border-left: 3px solid #cbd5e0;
    margin-top: 2rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5rem;
    background: #1a202c;
    color: #e2e8f0;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-cookie-accept:hover {
    background: #2c5282;
}

.btn-cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #2d3748;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    background: #f7fafc;
}

.about-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.about-content-side h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-content-side p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 500px;
    line-height: 1.7;
}

.about-image-side {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

.about-image-side img {
    width: 100%;
    height: 100%;
}

.story-split {
    display: flex;
    min-height: 600px;
}

.story-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: 100%;
}

.story-content-right {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.story-content-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.values-split {
    display: flex;
    min-height: 600px;
    background: #f7fafc;
}

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

.values-content-left {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content-left h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.1rem;
    color: #4a5568;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.values-image-right {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.values-image-right img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 5rem 8rem;
    background: #ffffff;
}

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

.approach-content-center h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.approach-content-center p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-split {
    display: flex;
    min-height: 600px;
}

.team-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.team-image-left img {
    width: 100%;
    height: 100%;
}

.team-content-right {
    flex: 1;
    padding: 4rem 5rem;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content-right h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.commitment-section {
    padding: 5rem 8rem;
    background: #edf2f7;
}

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

.commitment-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.75rem;
    font-weight: 700;
}

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

.services-hero {
    padding: 6rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.services-detailed {
    padding: 4rem 4rem;
    background: #f7fafc;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-height: 500px;
}

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

.service-detail-image {
    flex: 0 0 48%;
    background-color: #cbd5e0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.price-display {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2b6cb0;
    margin: 1.5rem 0;
}

.service-includes {
    list-style: none;
    margin-top: 1.5rem;
}

.service-includes li {
    font-size: 1rem;
    color: #4a5568;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.pricing-note-section {
    padding: 4rem 8rem;
    background: #edf2f7;
}

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

.pricing-note-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-note-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-hero {
    padding: 5rem 5rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.contact-info-split {
    display: flex;
    min-height: 700px;
}

.contact-details-side {
    flex: 1;
    padding: 5rem 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details-side h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

.contact-visual-side {
    flex: 1;
    position: relative;
    background-color: #e2e8f0;
    overflow: hidden;
}

.contact-visual-side img {
    width: 100%;
    height: 100%;
}

.contact-note {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #ffffff;
}

.contact-note h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-additional {
    padding: 5rem 8rem;
    background: #f7fafc;
}

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

.additional-info-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.additional-info-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.location-info-split {
    display: flex;
    min-height: 600px;
}

.location-text-side {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-text-side h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-text-side p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.location-image-side {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.location-image-side img {
    width: 100%;
    height: 100%;
}

.thanks-section {
    display: flex;
    min-height: 80vh;
    padding: 5rem 5rem;
    background: #f7fafc;
    gap: 4rem;
}

.thanks-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.thanks-next-steps {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    color: #4a5568;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.thanks-next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-block;
}

.btn-primary {
    background: #2b6cb0;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-secondary {
    background: #edf2f7;
    color: #2d3748;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.thanks-visual {
    flex: 0.8;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

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

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

.legal-content a:hover {
    color: #2c5282;
}

.legal-content em {
    color: #718096;
    font-size: 0.95rem;
}

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

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

.cookies-table th {
    background: #f7fafc;
    font-weight: 700;
    color: #2d3748;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 1.25rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .story-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .location-info-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-content-side,
    .intro-text-side,
    .service-content-right,
    .service-content-left,
    .form-content-right,
    .story-content-right,
    .values-content-left,
    .team-content-right,
    .service-detail-content,
    .contact-details-side,
    .location-text-side,
    .about-content-side {
        padding: 3rem 2rem;
    }

    .trust-section,
    .approach-section,
    .commitment-section,
    .pricing-note-section,
    .contact-additional {
        padding: 3rem 2rem;
    }

    .footer-split {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

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

    .services-showcase,
    .services-detailed {
        padding: 3rem 2rem;
    }

    .legal-content {
        padding: 3rem 2rem;
    }

    .thanks-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content-side h1,
    .about-content-side h1 {
        font-size: 2.25rem;
    }

    .section-header-center h2,
    .intro-text-side h2,
    .story-content-right h2,
    .values-content-left h2,
    .team-content-right h2 {
        font-size: 1.75rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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