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

.main-nav {
    background-color: #1a202c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #63b3ed;
}

.ad-label {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #63b3ed;
}

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

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

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

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

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-split-reverse {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

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

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.services-overview {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

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

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

.section-header-center p {
    font-size: 1.25rem;
    color: #4a5568;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-content {
    flex: 1;
    padding: 3rem;
}

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

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

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

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

.btn-select-service {
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-image {
    flex: 1;
    background-color: #e2e8f0;
    min-height: 400px;
}

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

.cta-full-width {
    background-color: #2d3748;
    padding: 5rem 2rem;
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #38a169;
}

.why-us-split {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.why-content {
    flex: 1;
}

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

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #4a5568;
}

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

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

.form-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: #4a5568;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-disclaimer p {
    font-size: 0.875rem;
    color: #718096;
}

.form-disclaimer a {
    color: #3182ce;
}

.btn-submit {
    width: 100%;
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63b3ed;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #a0aec0;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 1rem;
}

.page-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-content-centered p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
}

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

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

.service-detail-left {
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-right h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-right p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-right ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.service-detail-right ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
}

.price-label {
    font-weight: 600;
    color: #2d3748;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3182ce;
}

.cta-section-centered {
    background-color: #f7fafc;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

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

.our-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1;
    min-width: 280px;
}

.approach-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #4a5568;
}

.experience-section-split {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    background-color: #f7fafc;
}

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

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

.experience-content {
    flex: 1;
}

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

.experience-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.expertise-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3182ce;
}

.stat-label {
    font-size: 0.875rem;
    color: #718096;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
}

.technology-section-split {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    background-color: #f7fafc;
}

.technology-content {
    flex: 1;
}

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

.technology-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.tech-list {
    list-style: none;
    margin: 2rem 0;
}

.tech-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.tech-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

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

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

.contact-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

.contact-main-split {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

.visit-info {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.visit-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.visit-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.visit-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.visit-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
}

.final-cta {
    background-color: #3182ce;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.thanks-container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-main-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    background-color: #edf2f7;
    padding: 1rem;
    border-radius: 6px;
    color: #2d3748;
}

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

.next-steps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: #718096;
}

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

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3182ce;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3182ce;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.thanks-additional-info {
    margin-top: 3rem;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
}

.thanks-additional-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.thanks-additional-info p {
    color: #4a5568;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #3182ce;
    text-decoration: none;
}

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

.last-updated {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-intro {
    font-style: italic;
    color: #718096;
    margin-bottom: 2rem;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split-reverse,
    .service-card-split,
    .service-card-split.reverse,
    .why-us-split,
    .form-container-split,
    .service-detail-block,
    .service-detail-block.reverse,
    .about-hero-split,
    .experience-section-split,
    .technology-section-split,
    .contact-main-split {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-centered h1,
    .about-hero-content h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .cta-content-centered h2,
    .approach-header h2,
    .values-section h2,
    .faq-section h2,
    .final-cta h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .expertise-stats,
    .steps-grid {
        flex-direction: column;
    }

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

    .legal-container {
        padding: 2rem;
    }
}
