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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90d9;
    --accent-color: #ff6b6b;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

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

.cta-primary:hover {
    background-color: #1e4063;
}

.intro-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

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

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

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

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 24px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-center a {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-center a:hover {
    background-color: var(--primary-color);
    color: white;
}

.process-section {
    display: flex;
    background-color: var(--bg-white);
}

.process-visual {
    flex: 1;
    background-color: #cbd5e0;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

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

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-split {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.testimonials-split h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-row {
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.testimonial .author {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.form-section {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #1e4063;
}

.form-aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-aside img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.aside-note {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-split {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.5;
    max-width: 900px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px 40px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    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: 30px;
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie:hover {
    opacity: 0.9;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro-split {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.team-split {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-full {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.stats-full h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-big .number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.stat-big .label {
    font-size: 16px;
    color: var(--text-light);
    max-width: 200px;
}

.approach-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
}

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

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-detailed {
    padding: 60px;
    background-color: var(--bg-white);
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-info ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

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

.faq-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-services {
    padding: 80px 60px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

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

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

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.map-placeholder {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-alternate {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.contact-alternate h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.alternate-item {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.alternate-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.thanks-section {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 500px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.thanks-detail {
    background-color: var(--bg-white);
    padding: 20px 24px;
    margin-bottom: 32px;
    border-radius: 6px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-next ol {
    padding-left: 24px;
}

.thanks-next ol li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4063;
}

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.legal-page {
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .services-grid,
    .process-section,
    .testimonial-row,
    .form-section,
    .about-intro-split,
    .team-split,
    .service-full,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .stats-row,
    .values-grid,
    .alternate-grid {
        flex-wrap: wrap;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

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

    .services-preview,
    .testimonials-split,
    .form-section,
    .values-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-content,
    .process-content {
        padding: 40px 30px;
    }

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

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