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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2e5c7f;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2e7d32;
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(46, 92, 127, 0.75) 100%);
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    padding: 0 2rem;
    z-index: 10;
}

.hero-text-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: none;
}

.cta-primary:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.narrow-insight {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

.narrow-insight h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.narrow-insight p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.insight-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    font-style: italic;
}

.split-reveal {
    display: flex;
    align-items: center;
    min-height: 700px;
    background-color: var(--bg-light);
}

.split-image {
    flex: 1;
    height: 700px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 5rem 7%;
}

.split-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin: 2.5rem 0;
}

.feature-list li {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 82, 0.25);
}

.image-banner-section {
    position: relative;
    margin: 6rem 0;
}

.banner-image {
    height: 500px;
    overflow: hidden;
}

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

.banner-text-box {
    position: absolute;
    bottom: -3rem;
    right: 5%;
    background: var(--bg-white);
    padding: 3rem 4rem;
    max-width: 550px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.banner-text-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.banner-text-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.centered-services-preview {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-radius: 4px;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.cta-outlined {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-outlined:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.testimonial-visual {
    padding: 6rem 5%;
    background-color: var(--primary-color);
}

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

.testimonial-quote p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.wide-visual-section {
    position: relative;
    margin: 0;
}

.wide-visual-section img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.95), transparent);
    padding: 4rem 5%;
    color: var(--text-white);
}

.visual-caption h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.visual-caption p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 700px;
}

.process-flow {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

.process-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.process-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    max-width: 500px;
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.form-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.form-visual-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: stretch;
}

.form-content {
    flex: 1.2;
}

.form-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.form-visual {
    flex: 0.8;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.value-proposition-final {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

.value-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 700;
}

.value-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.value-col {
    flex: 1;
    min-width: 280px;
}

.value-col h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.value-col p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer {
    background-color: #0d1f2d;
    color: var(--text-white);
    padding: 4rem 5% 2rem;
}

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

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

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-white);
    opacity: 0.85;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.98);
    padding: 1.5rem 5%;
    z-index: 9999;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cookie-accept:hover {
    background-color: #e5c04a;
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.about-hero-text {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 700px;
    color: var(--text-white);
    z-index: 10;
}

.about-hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.philosophy-intro {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.philosophy-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.principles-section {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

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

.principles-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.principle-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}

.principle-block.reverse {
    flex-direction: row-reverse;
}

.principle-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.principle-visual img {
    width: 100%;
    height: auto;
}

.principle-text {
    flex: 1;
}

.principle-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.principle-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.approach-section {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

.approach-wrapper h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-top: 4px solid var(--accent-color);
}

.approach-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

.team-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.philosophy-closing {
    position: relative;
    margin: 0;
}

.closing-visual {
    height: 400px;
    overflow: hidden;
}

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

.closing-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    max-width: 700px;
    padding: 3rem;
    background: rgba(26, 58, 82, 0.9);
    border-radius: 4px;
}

.closing-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.closing-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-white);
}

.services-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.services-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.services-intro-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.services-detailed {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.service-detail-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    height: 350px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 3rem;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-detail-content h4 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-features li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 1rem;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.service-cta:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.pricing-transparency {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.transparency-container {
    max-width: 1000px;
    margin: 0 auto;
}

.transparency-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.transparency-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.cost-comparison {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-col {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.comparison-col.highlight {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 3px solid var(--accent-color);
}

.comparison-col h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.comparison-col.highlight h4 {
    color: var(--accent-color);
}

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

.comparison-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.comparison-list strong {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.transparency-conclusion {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 3rem;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    font-weight: 500;
}

.contact-hero {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-white);
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-main {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

.contact-info-side {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.info-value a {
    color: var(--secondary-color);
    font-weight: 600;
}

.info-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
}

.contact-image-block {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-note-block {
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-note-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-form-side {
    flex: 1.1;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

.btn-submit-contact {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit-contact:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.form-privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

.form-privacy-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-map-section {
    margin: 6rem 0;
}

.map-container {
    max-width: 100%;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    background: rgba(26, 58, 82, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 4px;
}

.map-overlay p {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.contact-faq {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

.faq-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 10rem 5% 6rem;
    background-color: var(--bg-white);
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.thanks-next-steps h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.btn-primary-thanks {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary-thanks:hover {
    background-color: #e5c04a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary-thanks {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.thanks-contact-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff9e6;
    border-radius: 4px;
}

.contact-urgent {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-email {
    font-size: 1.2rem;
    margin: 0;
}

.contact-email a {
    color: var(--secondary-color);
    font-weight: 700;
}

.thanks-testimonial {
    padding: 5rem 5%;
    background-color: var(--primary-color);
}

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

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.thanks-resources {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.resources-container h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.resources-intro {
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.resource-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-page {
    padding: 10rem 5% 6rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--text-white);
}

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

.cookie-table th {
    font-weight: 700;
}

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

@media (max-width: 968px) {
    .hero-text-overlay h1 {
        font-size: 3rem;
    }

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

    .split-reveal {
        flex-direction: column;
    }

    .split-image {
        height: 400px;
    }

    .form-visual-wrapper {
        flex-direction: column;
    }

    .value-columns {
        flex-direction: column;
    }

    .principle-block,
    .principle-block.reverse {
        flex-direction: column;
    }

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

    .cost-comparison {
        flex-direction: column;
    }

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

@media (max-width: 668px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .narrow-insight h2 {
        font-size: 2rem;
    }

    .services-header h2,
    .process-container h2,
    .approach-wrapper h2 {
        font-size: 2.2rem;
    }

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