* {
    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.7;
    color: #2a2a2a;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    color: #2c5f8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a9fd8;
}

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

ul {
    list-style-position: inside;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f8d;
    letter-spacing: -0.5px;
}

.nav-primary {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 20px;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-primary.active {
    display: flex;
}

.nav-primary a {
    color: #2a2a2a;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.nav-primary a:hover {
    color: #2c5f8d;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-stacked {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 80px 0 60px;
}

.hero-content-stack {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-visual {
    margin-top: 40px;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.section-intro {
    padding: 70px 0;
    background-color: #ffffff;
}

.section-heading-center {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section-heading-left {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.insight-block {
    padding: 80px 0;
    background-color: #fafbfc;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.insight-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.insight-icon {
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.story-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.story-highlight {
    background-color: #f0f7ff;
    padding: 25px;
    border-left: 4px solid #2c5f8d;
    margin-top: 30px;
    font-weight: 500;
    color: #2a2a2a;
}

.cta-inline {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a9fd8 100%);
}

.cta-inline-content {
    text-align: center;
    color: #ffffff;
}

.cta-inline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.services-preview {
    padding: 80px 0;
    background-color: #fafbfc;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-block {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #2c5f8d;
}

.service-content {
    padding: 30px;
}

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

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.service-duration {
    font-size: 0.9rem;
    color: #777;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f8d;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

.main-form {
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.trust-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #4a9fd8;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c5f8d;
}

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a4d6d 0%, #2c5f8d 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #4a9fd8;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #3888c2;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-primary-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f8d;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: #f0f7ff;
    transform: translateY(-2px);
    color: #2c5f8d;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f8d;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #2c5f8d;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #2c5f8d;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a4d6d;
    transform: translateY(-2px);
}

.footer-main {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept {
    background-color: #4a9fd8;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.btn-cookie-accept:hover {
    background-color: #3888c2;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    border: 2px solid #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

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

.sticky-cta-btn {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(44, 95, 141, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-cta-btn:hover {
    background-color: #1a4d6d;
    box-shadow: 0 6px 24px rgba(44, 95, 141, 0.5);
    transform: scale(1.05);
    color: #ffffff;
}

.page-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 80px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a9fd8 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fafbfc;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.service-detail-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

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

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.service-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
}

.price-label {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c5f8d;
}

.service-highlight {
    border: 2px solid #4a9fd8;
    background-color: #f0f7ff;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail a {
    color: #2c5f8d;
    font-weight: 600;
}

.contact-note {
    background-color: #f0f7ff;
    padding: 20px;
    border-left: 4px solid #4a9fd8;
    margin-top: 30px;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.contact-cta {
    padding: 80px 0;
    background-color: #fafbfc;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fafbfc;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5f8d;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 1.05rem;
    color: #2c5f8d;
    margin: 0;
}

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

.thanks-next h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-steps {
    list-style-position: inside;
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-page a {
    color: #2c5f8d;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #fafbfc;
}

.cookies-table thead {
    background-color: #2c5f8d;
    color: #ffffff;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #3a3a3a;
}

@media (min-width: 768px) {
    .nav-primary {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-primary a {
        border-bottom: none;
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero-stacked {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .insight-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 0 0 calc(33.333% - 24px);
    }

    .services-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-block {
        flex: 0 0 calc(50% - 13px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
        gap: 60px;
    }

    .contact-info {
        flex: 0 0 55%;
    }

    .contact-visual {
        flex: 0 0 40%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;
    }

    .footer-col {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-heading-center {
        font-size: 2.5rem;
    }

    .section-heading-left {
        font-size: 2.5rem;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .service-details {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions .btn-secondary,
    .thanks-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}