/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #4a5568;
    font-weight: 500;
}

.main-nav a:hover {
    color: #2b6cb0;
}

.ad-disclosure {
    background-color: #fed7d7;
    color: #c53030;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left,
.hero-right {
    flex: 1;
    padding: 3rem;
}

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

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

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

.hero-right {
    background-color: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.btn-secondary {
    background-color: #edf2f7;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-large {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-large:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 108, 176, 0.4);
}

/* Split Sections */
.intro-content-split,
.problem-split,
.why-us-split,
.about-split,
.values-split,
.services-split-container {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.intro-section,
.problem-section,
.why-us-section,
.about-intro,
.values-section {
    padding: 5rem 2rem;
}

.intro-text,
.intro-visual,
.problem-text,
.problem-visual,
.why-us-content,
.why-us-visual,
.about-text,
.about-image,
.values-content,
.values-image,
.services-text-block,
.services-visual-block {
    flex: 1;
    padding: 2rem 3rem;
}

.intro-section {
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.problem-section {
    background-color: #f7fafc;
}

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

.challenge-list {
    list-style: none;
}

.challenge-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
}

.challenge-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

/* Approach Section */
.approach-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

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

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

/* Services Highlight */
.services-highlight {
    background-color: #edf2f7;
    padding: 5rem 2rem;
}

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

.services-text-block p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #2b6cb0;
    padding: 5rem 2rem;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.testimonial-image {
    flex: 0 0 300px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.375rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #cbd5e0;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Why Us Section */
.why-us-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

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

.reason-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #edf2f7;
    padding: 5rem 2rem;
}

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

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

.cta-content-centered p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Services Main Page */
.page-hero {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.375rem;
    color: #cbd5e0;
}

.services-main {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-item-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

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

.service-features li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

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

.service-pricing {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price {
    font-size: 2rem;
    color: #2b6cb0;
    font-weight: 700;
}

.btn-select-service {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.service-cta {
    background-color: #f7fafc;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

/* About Page */
.about-intro {
    background-color: #ffffff;
}

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

.about-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.mission-section {
    background-color: #2b6cb0;
    padding: 5rem 2rem;
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.25rem;
    color: #cbd5e0;
    line-height: 1.8;
}

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

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-container h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.expertise-item h3 {
    font-size: 1.375rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-item p {
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    background-color: #ffffff;
}

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

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

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

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-detail-section {
    background-color: #edf2f7;
    padding: 5rem 2rem;
}

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

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

.approach-detail-content p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    color: #4a5568;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 260px;
    text-align: center;
    padding: 1.5rem;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.team-member p {
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Page */
.contact-main {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-form-section,
.contact-info-section {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.contact-form-section p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: inherit;
    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: #2b6cb0;
}

.btn-submit {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

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

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

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

.contact-info-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

.contact-info-note p {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.map-section {
    padding: 0;
}

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

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

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

.thanks-details {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.thanks-details p {
    color: #2d3748;
    font-size: 1.0625rem;
}

.thanks-next-steps h2 {
    font-size: 1.875rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.thanks-section .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.last-updated {
    color: #718096;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.875rem;
    color: #1a202c;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-container a {
    color: #2b6cb0;
    text-decoration: underline;
}

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

/* Footer */
.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 240px;
}

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

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.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.75rem;
}

.disclaimer-footer {
    font-size: 0.8125rem;
    color: #718096;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
}

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

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

.btn-cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d3748;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-content-split,
    .problem-split,
    .why-us-split,
    .about-split,
    .values-split,
    .services-split-container,
    .service-item-split,
    .contact-container,
    .testimonial-container {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .approach-grid,
    .expertise-grid,
    .team-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 1.875rem;
    }

    .hero-left p {
        font-size: 1.0625rem;
    }

    .page-hero-content h1 {
        font-size: 2.25rem;
    }

    .service-content,
    .service-image {
        padding: 1.5rem 1rem;
    }

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

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

@media (max-width: 480px) {
    .hero-left h1,
    .cta-content-centered h2,
    .thanks-container h1 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}