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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5f7a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a5f7a;
}

/* Hero Section - Immersive */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 2;
}

.hero-content-scroll {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle-minimal {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.95;
}

.btn-hero-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Narrative Sections */
.narrative-intro {
    padding: 120px 20px;
    background: #f8f9fa;
}

.narrative-container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.section-title-story {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a5f7a;
}

.text-story {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

.text-story-emphasis {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 40px 0;
    padding: 30px;
    background: #e8f4f8;
    border-left: 5px solid #1a5f7a;
    font-style: italic;
    color: #2c3e50;
}

/* Split Screen Sections */
.insight-visual-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.split-content-left {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.split-text-block {
    max-width: 550px;
}

.insight-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.split-image-right {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

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

/* Story Amplification */
.story-amplification {
    padding: 100px 20px;
    background: #ffffff;
}

.story-container-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.story-text-primary {
    max-width: 800px;
    margin-bottom: 60px;
}

.story-heading {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a5f7a;
}

.story-paragraph {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-card {
    padding: 40px;
    background: #f8f9fa;
    border-left: 6px solid #1a5f7a;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5f7a;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.card-title-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Trust Builder */
.trust-builder-asymmetric {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
}

.trust-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-block-main {
    max-width: 750px;
    margin-bottom: 60px;
}

.trust-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.trust-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.trust-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-feature {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Testimonials */
.testimonial-flow {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-cards-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* CTA Inline Story */
.cta-inline-story {
    padding: 100px 20px;
    background: #1a5f7a;
    color: #ffffff;
}

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

.cta-story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-story-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-cta-story {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 45px;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Reveal */
.services-reveal {
    padding: 120px 20px;
    background: #f8f9fa;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card-premium {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #e8f4f8;
    color: #1a5f7a;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.btn-service-select {
    width: 100%;
    padding: 15px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #145166;
    transform: translateY(-2px);
}

/* Urgency Block */
.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a5f7a 100%);
    color: #ffffff;
}

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

.urgency-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.urgency-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.urgency-cta {
    margin-top: 40px;
}

.btn-urgency {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.form-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.investment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.form-group-checkbox label a {
    color: #1a5f7a;
    text-decoration: underline;
}

.btn-form-submit {
    padding: 18px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-form-submit:hover {
    background: #145166;
    transform: translateY(-2px);
}

/* Final Reassurance */
.final-reassurance {
    padding: 80px 20px;
    background: #e8f4f8;
}

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

.reassurance-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.reassurance-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Footer */
.footer-extended {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a:hover {
    opacity: 1;
    color: #e8f4f8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a5f7a;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #e8f4f8;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #145166;
}

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

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

/* About Page Specific */
.page-hero-simple {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-intro h2,
.about-values h2,
.about-mission h2,
.about-team h2,
.about-approach h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.about-intro p,
.about-mission p,
.about-team p,
.about-approach p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image-block {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.approach-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.approach-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 1.3rem;
}

.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
    border-radius: 15px;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.btn-primary-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background: #145166;
    transform: translateY(-2px);
}

/* Services Page Specific */
.services-detailed-section {
    padding: 80px 20px;
}

.services-detailed-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
}

.service-detail-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5f7a;
    margin: 15px 0;
}

.service-tag-inline {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f4f8;
    color: #1a5f7a;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-detail-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-cta {
    margin-top: 30px;
}

.btn-service-detail {
    display: inline-block;
    padding: 15px 40px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #145166;
    transform: translateY(-2px);
}

.featured-service {
    border: 3px solid #1a5f7a;
}

.services-bottom-cta {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
    border-radius: 15px;
}

.services-bottom-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.services-bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #145166;
    transform: translateY(-3px);
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a5f7a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

.contact-item a {
    color: #1a5f7a;
    text-decoration: underline;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #e8f4f8;
    border-left: 4px solid #1a5f7a;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.contact-cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 20px 80px;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #1a5f7a;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 25px;
    background: #e8f4f8;
    border-radius: 10px;
    margin-bottom: 50px;
}

.thanks-service-label {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 8px;
}

.thanks-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.thanks-next-steps {
    text-align: left;
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

.next-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1a5f7a;
    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.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-additional {
    text-align: left;
    margin: 50px 0;
    padding: 30px;
    background: #e8f4f8;
    border-radius: 10px;
}

.thanks-additional h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.thanks-additional p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-prep-list {
    list-style: none;
    margin-top: 15px;
}

.thanks-prep-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.thanks-prep-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
    font-size: 1.3rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #145166;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #1a5f7a;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #1a5f7a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 80px;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.legal-updated {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-container ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-container a {
    color: #1a5f7a;
    text-decoration: underline;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-floating {
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle-minimal {
        font-size: 1.2rem;
    }

    .section-title-story {
        font-size: 2rem;
    }

    .text-story {
        font-size: 1.1rem;
    }

    .split-content-left {
        padding: 50px 30px;
    }

    .insight-title {
        font-size: 1.8rem;
    }

    .story-heading {
        font-size: 2rem;
    }

    .trust-heading {
        font-size: 2rem;
    }

    .services-main-title {
        font-size: 2.3rem;
    }

    .form-title {
        font-size: 2rem;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .service-detail-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .services-grid-offset {
        gap: 25px;
    }

    .service-card-premium {
        min-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}