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

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

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

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 36px;
    align-items: center;
}

.header-right a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-right a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 38px;
    max-width: 520px;
    line-height: 1.6;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    align-self: flex-start;
}

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

.feature-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

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

.feature-image {
    flex: 1;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.feature-content {
    flex: 1;
    padding: 0 80px;
}

.feature-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 26px;
    letter-spacing: -0.8px;
}

.feature-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 22px;
    line-height: 1.7;
}

.stats-split {
    display: flex;
    background-color: #0066cc;
    padding: 60px 60px;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    max-width: 200px;
    line-height: 1.5;
    opacity: 0.95;
}

.services-preview-split {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.services-intro {
    max-width: 600px;
    margin-bottom: 50px;
}

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

.services-intro p {
    font-size: 19px;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.link-inline {
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-inline:hover {
    color: #0052a3;
    text-decoration: underline;
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    max-width: 520px;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-visual {
    flex: 1;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.booking-form {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.info-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background-color: #ffffff;
}

.info-block {
    flex: 1;
}

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

.info-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-col p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    border-top: 1px solid #3a3a3a;
    padding-top: 30px;
    font-size: 14px;
    color: #909090;
    line-height: 1.6;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e9ecef;
    padding: 24px 60px;
    display: none;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

.btn-reject {
    background-color: #e9ecef;
    color: #4a4a4a;
}

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

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

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

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.page-hero-content p {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 520px;
    line-height: 1.6;
}

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

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

.content-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.content-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-image {
    flex: 1;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
}

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

.values-split {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.values-split h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

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

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.team-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
}

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

.cta-split {
    padding: 100px 60px;
    background-color: #0066cc;
    text-align: center;
}

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

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #0066cc;
}

.cta-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    padding: 60px 60px 100px;
}

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

.service-detail-split:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.price-large {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 26px;
    line-height: 1.7;
}

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

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a4a4a;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
}

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

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-service:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.additional-services-split {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.additional-services-split h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.additional-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px 28px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.additional-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.additional-item p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.additional-item .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
}

.pricing-note-split {
    padding: 60px 60px;
    background-color: #ffffff;
}

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

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

.note-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.contact-info {
    flex: 1.2;
}

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

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

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note-split {
    padding: 60px 60px;
    background-color: #f8f9fa;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

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

.note-box p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 14px;
    line-height: 1.7;
}

.note-box a {
    color: #0066cc;
    font-weight: 600;
}

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

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

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

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.service-confirmation {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-size: 17px;
    color: #1a1a1a;
}

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

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

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

.step-item {
    flex: 1;
    max-width: 240px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #0066cc;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .feature-split,
    .testimonial-split,
    .form-split,
    .content-split,
    .team-mention-split,
    .service-detail-split,
    .contact-split,
    .page-hero-split {
        flex-direction: column;
    }

    .feature-split.reverse,
    .content-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .footer-main,
    .stats-split,
    .services-grid,
    .values-grid,
    .additional-grid,
    .steps-grid {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 42px;
    }

    .header-split {
        padding: 20px 30px;
    }

    .hero-split,
    .feature-split,
    .content-split,
    .service-detail-split,
    .contact-split {
        padding: 60px 30px;
    }

    .services-preview-split,
    .form-section,
    .values-split,
    .team-mention-split,
    .cta-split,
    .additional-services-split,
    .pricing-note-split,
    .contact-note-split {
        padding: 60px 30px;
    }

    .legal-page,
    .thanks-hero {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .feature-content,
    .content-text {
        padding: 0;
    }

    .cookie-banner {
        padding: 20px 30px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}