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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

a:hover {
    color: #2a7a8f;
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: #333;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-offset-left {
    flex: 1;
    padding: 100px 60px 60px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-offset-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a4d5e;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #2a7a8f;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #1a4d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 122, 143, 0.3);
}

.hero-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-left: -50px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-story {
    padding: 120px 60px;
    background: #fff;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-image-float {
    flex: 0 0 45%;
    position: relative;
    margin-top: -80px;
}

.story-image-float img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-text {
    flex: 1;
    padding-top: 40px;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1a4d5e;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-amplification {
    padding: 100px 60px;
    background: linear-gradient(180deg, #1a4d5e 0%, #2a7a8f 100%);
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.problem-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.problem-card.offset-top {
    margin-top: -30px;
}

.problem-card.offset-bottom {
    margin-top: 30px;
}

.problem-card h3 {
    font-size: 1.5rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: #555;
    line-height: 1.7;
}

.insight-section {
    padding: 120px 60px;
    background: #f9fafb;
}

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

.insight-container h2 {
    font-size: 3rem;
    color: #1a4d5e;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-block {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-block.large {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-block.medium {
    flex: 1 1 calc(65% - 15px);
    flex-direction: row;
}

.service-block.small {
    flex: 1 1 calc(35% - 15px);
}

.service-image {
    flex: 0 0 40%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.service-block.small .service-image {
    flex: 1 0 200px;
}

.service-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a7a8f;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background: #2a7a8f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #1a4d5e;
    transform: translateX(5px);
}

.trust-building {
    padding: 100px 60px;
    background: #fff;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    color: #1a4d5e;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.4rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 80px 60px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

blockquote {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-left: 5px solid #2a7a8f;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

blockquote p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 100px 60px;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    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: #2a7a8f;
}

.btn-submit {
    padding: 14px 40px;
    background: #2a7a8f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #1a4d5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 122, 143, 0.3);
}

.disclaimer-section {
    padding: 60px;
    background: #f0f4f8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #2a7a8f;
    border-radius: 6px;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-main {
    background: #1a4d5e;
    color: #fff;
    padding: 60px 60px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 94, 0.98);
    color: #fff;
    padding: 25px 40px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2a7a8f;
    color: #fff;
}

.btn-accept:hover {
    background: #1f5f73;
}

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

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

.page-hero-small {
    padding: 150px 60px 60px;
    background: linear-gradient(135deg, #1a4d5e 0%, #2a7a8f 100%);
    color: #fff;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero-small p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.about-story {
    padding: 100px 60px;
    background: #fff;
}

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

.about-image-left {
    flex: 0 0 45%;
}

.about-image-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-text-right {
    flex: 1;
}

.about-text-right h2 {
    font-size: 2.5rem;
    color: #1a4d5e;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-section {
    padding: 100px 60px;
    background: #f9fafb;
}

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

.mission-wrapper h2 {
    font-size: 2.8rem;
    color: #1a4d5e;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.mission-lead {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.mission-pillars {
    display: flex;
    gap: 40px;
}

.pillar {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.pillar h3 {
    font-size: 1.5rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar p {
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 100px 60px;
    background: #fff;
}

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

.team-container h2 {
    font-size: 2.5rem;
    color: #1a4d5e;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-container > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 900px;
}

.approach-steps {
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #2a7a8f;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2a7a8f;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1.3rem;
    color: #1a4d5e;
    margin-bottom: 10px;
    font-weight: 700;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a4d5e 0%, #2a7a8f 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 45px;
    background: #fff;
    color: #1a4d5e;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.services-detail {
    padding: 100px 60px;
    background: #f9fafb;
}

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

.service-detail-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-image {
    flex: 0 0 45%;
}

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

.service-detail-content {
    flex: 1;
    padding: 45px;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a4d5e;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #1a4d5e;
    margin: 25px 0 15px;
    font-weight: 700;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-science {
    background: #f0f8fb;
    padding: 15px 20px;
    border-left: 3px solid #2a7a8f;
    margin: 20px 0;
}

.service-science p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

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

.contact-section {
    padding: 100px 60px;
    background: #fff;
}

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

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.contact-block h3 {
    font-size: 1.3rem;
    color: #1a4d5e;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.map-placeholder {
    padding: 60px;
    background: #f0f4f8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 300px;
    background: #dde7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #666;
}

.thanks-section {
    padding: 150px 60px 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2a7a8f;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    margin: 30px 0;
    color: #555;
    line-height: 1.8;
}

.thanks-details p {
    margin-bottom: 15px;
}

#selectedServiceDisplay {
    font-weight: 700;
    color: #2a7a8f;
    font-size: 1.1rem;
}

.thanks-next {
    margin: 40px 0;
    text-align: left;
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 1.5rem;
    color: #1a4d5e;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-next ul {
    margin-left: 25px;
}

.thanks-next ul li {
    color: #555;
    line-height: 2;
    margin-bottom: 8px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2a7a8f;
    color: #fff;
}

.btn-primary:hover {
    background: #1a4d5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 122, 143, 0.3);
}

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

.btn-secondary:hover {
    background: #2a7a8f;
    color: #fff;
}

.legal-page {
    padding: 120px 60px 80px;
    background: #fff;
}

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

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

.legal-update {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a4d5e;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2a7a8f;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background: #f0f4f8;
}

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

.cookies-table th {
    font-weight: 700;
    color: #1a4d5e;
}

.cookies-table td {
    color: #555;
}

.references {
    list-style: none;
    margin-left: 0;
}

.references li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
    }

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

    .hero-image-right {
        min-height: 400px;
        margin-left: 0;
        clip-path: none;
    }

    .story-wrapper,
    .about-container {
        flex-direction: column;
    }

    .problem-grid,
    .trust-grid,
    .mission-pillars,
    .approach-steps {
        flex-direction: column;
    }

    .services-asymmetric {
        flex-direction: column;
    }

    .service-block.large,
    .service-block.medium,
    .service-block.small {
        flex-direction: column;
    }

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

    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

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