/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:not(.secondary) {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-cookie:not(.secondary):hover {
    background-color: #2c5282;
}

.btn-cookie.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
    order: 3;
}

.nav-main {
    display: flex;
    gap: 32px;
}

.nav-main a {
    font-weight: 500;
    color: #4a5568;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-main a:hover,
.nav-main a.active {
    color: #2d3748;
    border-bottom-color: #3182ce;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 24px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3182ce;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(49, 130, 206, 0.3);
}

.cta-button-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2d3748;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.intro-text {
    font-size: 24px;
    line-height: 1.7;
    color: #2d3748;
    text-align: center;
}

/* Split Content Sections */
.split-content {
    display: flex;
    min-height: 500px;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

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

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

.split-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.split-text-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-list-inline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.service-card-mini {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.service-card-mini h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.service-card-mini p {
    font-size: 16px;
    color: #718096;
    margin: 0;
}

.link-arrow {
    color: #3182ce;
    font-weight: 600;
    font-size: 18px;
}

.link-arrow:hover {
    color: #2c5282;
    text-decoration: underline;
}

/* Pricing Section */
.pricing-reveal {
    padding: 100px 24px;
    background-color: #f7fafc;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #3182ce;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #3182ce;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #edf2f7;
    color: #2d3748;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Form Section */
.form-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.form-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-left-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 18px;
    color: #2d3748;
}

.trust-item span {
    font-size: 16px;
    color: #718096;
}

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

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

.selected-service {
    background-color: #ebf8ff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-service.hidden {
    display: none;
}

.btn-clear {
    font-size: 24px;
    color: #718096;
    padding: 0 8px;
    transition: color 0.3s ease;
}

.btn-clear:hover {
    color: #e53e3e;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3182ce;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(49, 130, 206, 0.3);
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    min-height: 600px;
}

.testimonials-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.testimonials-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

.testimonials-image {
    flex: 1;
    overflow: hidden;
}

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

/* Process Section */
.process-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
    padding: 120px 24px;
    background-color: #2d3748;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    color: #cbd5e0;
    margin-bottom: 40px;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 500px;
}

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

.hero-text-area h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text-area p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.hero-image-area {
    flex: 1;
    overflow: hidden;
}

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

/* Content Block */
.content-block {
    padding: 80px 24px;
    background-color: #ffffff;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

/* Values Split */
.values-split {
    display: flex;
    min-height: 500px;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* Team Section */
.team-section {
    padding: 100px 24px;
    background-color: #f7fafc;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a202c;
}

.team-intro {
    font-size: 20px;
    text-align: center;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.member-role {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.split-tech-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

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

.tech-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.tech-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.tech-category h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.tech-category ul {
    list-style: none;
    padding-left: 0;
}

.tech-category li {
    font-size: 16px;
    color: #4a5568;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

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

.tech-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

/* Approach Section */
.approach-section {
    padding: 80px 24px;
    background-color: #f7fafc;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

/* CTA About */
.cta-about {
    padding: 100px 24px;
    background-color: #2d3748;
    text-align: center;
}

.cta-about .cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-about .cta-content p {
    font-size: 20px;
    color: #cbd5e0;
    margin-bottom: 40px;
}

/* Services Page */
.services-hero {
    padding: 80px 24px;
    background-color: #f7fafc;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-hero p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

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

.service-content-left h2,
.service-content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-content-left p,
.service-content-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing-box {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.pricing-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.pricing-note {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.service-image-right,
.service-image-left {
    flex: 1;
    overflow: hidden;
}

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

.services-cta {
    padding: 100px 24px;
    background-color: #f7fafc;
    text-align: center;
}

.services-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-cta p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

/* Contact Page */
.contact-hero {
    padding: 80px 24px;
    background-color: #f7fafc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-hero p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-split-section {
    display: flex;
    min-height: 500px;
}

.contact-info-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

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

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

.contact-alternative {
    padding: 100px 24px;
    background-color: #f7fafc;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-alternative p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #1a202c;
    text-align: center;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 120px 24px;
    background-color: #f7fafc;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-hero p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.selected-service-confirm {
    margin-top: 24px;
    padding: 16px;
    background-color: #ebf8ff;
    border-radius: 8px;
}

.selected-service-confirm p {
    font-size: 18px;
    color: #2c5282;
}

/* Next Steps */
.next-steps {
    padding: 100px 24px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2d3748;
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Thanks Resources */
.thanks-resources {
    padding: 80px 24px;
    background-color: #f7fafc;
}

.thanks-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.resource-card p {
    font-size: 16px;
    color: #4a5568;
}

/* Legal Pages */
.legal-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-date {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

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

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

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

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

.cookie-table td {
    font-size: 14px;
    color: #4a5568;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col a {
    font-size: 14px;
    color: #cbd5e0;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #4a5568;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 16px;
}

.copyright {
    font-size: 14px;
    color: #cbd5e0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .testimonials-split,
    .page-hero-split,
    .values-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-text-right,
    .split-image-left,
    .testimonials-content,
    .testimonials-image,
    .hero-text-area,
    .hero-image-area,
    .values-text,
    .values-image,
    .service-content-left,
    .service-content-right,
    .service-image-left,
    .service-image-right,
    .contact-info-left,
    .contact-map-right {
        padding: 60px 40px;
    }

    .split-form-layout,
    .split-tech-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1,
    .hero-text-area h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .ad-disclosure {
        order: 1;
        flex-basis: 100%;
        text-align: center;
    }

    .hero-text h1,
    .hero-text-area h1 {
        font-size: 32px;
    }

    .hero-text p,
    .hero-text-area p {
        font-size: 18px;
    }

    .intro-text {
        font-size: 20px;
    }

    .split-text-right h2,
    .values-text h2,
    .tech-text h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .hero-left,
    .hero-right,
    .split-text-right,
    .split-image-left,
    .testimonials-content,
    .testimonials-image,
    .hero-text-area,
    .hero-image-area,
    .values-text,
    .values-image,
    .service-content-left,
    .service-content-right,
    .contact-info-left {
        padding: 40px 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-left-content {
        padding-bottom: 0;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .hero-text-area h1,
    .thanks-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-button-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .pricing-card {
        min-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }
}