* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.ad-notice {
    background-color: var(--bg-gray);
    color: var(--text-medium);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.split-header {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.value-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-content-right {
    flex: 1;
}

.value-text-left {
    flex: 1;
}

.value-content-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: var(--bg-gray);
}

.value-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.value-section p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 0;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-gray);
}

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

.service-card img {
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    background-color: var(--bg-gray);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    padding: 24px 24px 0 24px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 24px;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 0 24px;
}

.service-card .btn-select {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.service-card .btn-select:hover {
    background-color: var(--primary-dark);
}

.service-card .btn-select.selected {
    background-color: var(--success-color);
}

.form-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-split-left {
    flex: 1;
}

.form-split-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.form-split-left p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.form-split-right {
    flex: 1;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.trust-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: 12px;
    width: calc(33.333% - 22px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.cta-full {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-full h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-full p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.about-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: var(--bg-gray);
}

.expertise-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.expertise-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-item {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    width: calc(33.333% - 27px);
    min-width: 280px;
    text-align: center;
}

.expertise-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.expertise-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.philosophy-offset {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    color: var(--white);
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.values-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.values-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    width: calc(33.333% - 22px);
    min-width: 300px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-left {
    flex: 1;
}

.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: var(--bg-gray);
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.price-tag {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-right p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-right h4 {
    font-size: 19px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-detail-right ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-right ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 16px;
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-service:hover {
    background-color: var(--primary-dark);
}

.process-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    width: calc(25% - 24px);
    min-width: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-services {
    text-align: center;
    padding: 80px 40px;
    margin: 60px 0;
}

.cta-services h2 {
    font-size: 42px;
    margin-bottom: 36px;
    color: var(--secondary-color);
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

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

.contact-info-left {
    flex: 1;
}

.contact-map-right {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    background-color: var(--bg-gray);
}

.contact-cta {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 800;
}

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 800;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmed {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
    border: 2px solid var(--primary-color);
}

.service-confirmed h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-confirmed p {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .value-section,
    .form-section,
    .about-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card,
    .testimonial-card,
    .expertise-item,
    .value-card,
    .process-step {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .hero-split h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 20px;
    }

    .service-card,
    .testimonial-card,
    .expertise-item,
    .value-card,
    .process-step {
        width: 100%;
    }

    .services-grid,
    .testimonials-offset,
    .expertise-grid,
    .values-cards,
    .process-steps {
        gap: 20px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

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