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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fefefe;
}

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

a:hover {
    color: #1a3d52;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #0a1a26;
    color: #e8e8e8;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    padding: 0 30px;
    margin-bottom: 50px;
}

.nav-brand a {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    flex-grow: 1;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 30px;
    color: #b8c5d0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #1a3d52;
    color: #fff;
}

.nav-footer {
    padding: 0 30px;
    font-size: 13px;
}

.nav-footer a {
    display: block;
    color: #778899;
    margin-bottom: 8px;
    font-size: 13px;
}

.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 80px 60px;
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.intro-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #f9f9f9;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.intro-left p {
    margin-bottom: 24px;
    color: #333;
}

.intro-right {
    flex: 0.9;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-magazine {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: #fff;
}

.magazine-column-main {
    flex: 2.2;
}

.magazine-column-main h3 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #0a1a26;
}

.magazine-column-main p {
    margin-bottom: 26px;
    color: #2a2a2a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
}

.magazine-column-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-card {
    padding: 30px;
    background-color: #f4f4f4;
    border-left: 4px solid #2c5f7d;
}

.side-card.dark {
    background-color: #0a1a26;
    color: #e8e8e8;
    border-left: 4px solid #5a8aa6;
}

.side-card h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.location-list {
    list-style: none;
    font-size: 16px;
    line-height: 1.9;
}

.location-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.location-list li:last-child {
    border-bottom: none;
}

.visual-break {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 30px 60px;
    color: #fff;
}

.visual-caption p {
    font-size: 20px;
    font-style: italic;
    margin: 0;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

.section-heading {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: #0a1a26;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 19px;
    color: #444;
}

.services-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 50px;
    border-left: 6px solid #2c5f7d;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(8px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 72px;
    font-weight: 700;
    color: #e8e8e8;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0a1a26;
}

.service-card p {
    margin-bottom: 16px;
    color: #333;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f7d;
    margin: 20px 0;
}

.btn-service {
    background-color: #2c5f7d;
    color: #fff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-service:hover {
    background-color: #1a3d52;
}

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

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

.story-text-narrow h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.story-text-narrow p {
    margin-bottom: 28px;
    color: #2a2a2a;
    font-size: 19px;
}

.story-inline-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
}

.testimonials-inline {
    padding: 80px 60px;
    background-color: #0a1a26;
    color: #e8e8e8;
}

.testimonials-inline h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

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

.testimonial-item {
    flex: 1;
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #5a8aa6;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 16px;
    color: #b8c5d0;
}

.cta-block-centered {
    padding: 100px 60px;
    background-color: #f4f4f4;
    text-align: center;
}

.cta-block-centered h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #0a1a26;
}

.cta-block-centered p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 19px;
    color: #444;
}

.btn-cta-large {
    background-color: #2c5f7d;
    color: #fff;
    padding: 18px 50px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    display: inline-block;
}

.btn-cta-large:hover {
    background-color: #1a3d52;
}

.benefits-asymmetric {
    padding: 80px 60px;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-offset-left {
    padding: 40px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 150px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f7d;
}

.benefit-offset-right {
    padding: 40px;
    margin-bottom: 30px;
    margin-left: 150px;
    margin-right: 0;
    background-color: #f4f4f4;
    border-right: 4px solid #5a8aa6;
}

.benefit-offset-left h4,
.benefit-offset-right h4 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #0a1a26;
}

.benefit-offset-left p,
.benefit-offset-right p {
    color: #333;
    font-size: 17px;
}

.form-section {
    padding: 100px 60px;
    background-color: #0a1a26;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #0a1a26;
}

.form-header p {
    font-size: 17px;
    color: #555;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0a1a26;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    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: #2c5f7d;
}

.form-consent {
    font-size: 14px;
    color: #555;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
}

.btn-submit {
    background-color: #2c5f7d;
    color: #fff;
    padding: 16px 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #1a3d52;
}

.final-insight {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

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

.insight-text-block h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.insight-text-block p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #333;
}

.site-footer {
    background-color: #0a1a26;
    color: #b8c5d0;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #b8c5d0;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid #1a3d52;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.sticky-cta-btn {
    background-color: #2c5f7d;
    color: #fff;
    padding: 16px 32px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-family: inherit;
}

.sticky-cta-btn:hover {
    background-color: #1a3d52;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0a1a26;
    color: #e8e8e8;
    padding: 20px 60px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #1a3d52;
}

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

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

.page-header-simple {
    padding: 80px 60px 60px;
    background-color: #f9f9f9;
}

.page-header-simple h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #0a1a26;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
}

.about-story {
    display: flex;
    padding: 80px 60px;
    gap: 70px;
    background-color: #fff;
}

.story-column-left {
    flex: 1.3;
}

.story-column-left h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #0a1a26;
}

.story-column-left p {
    margin-bottom: 24px;
    color: #333;
}

.story-column-right {
    flex: 1;
}

.story-column-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-block {
    padding: 80px 60px;
    background-color: #0a1a26;
    color: #e8e8e8;
    text-align: center;
}

.mission-block h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
}

.team-approach {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.team-approach h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
    color: #0a1a26;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #2c5f7d;
}

.approach-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0a1a26;
}

.approach-item p {
    color: #444;
    font-size: 16px;
}

.values-section {
    padding: 80px 60px;
    background-color: #fff;
}

.values-section h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    color: #0a1a26;
}

.values-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    font-size: 19px;
    line-height: 2.2;
}

.values-list li {
    padding: 20px;
    border-left: 4px solid #5a8aa6;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.why-us {
    padding: 80px 60px;
    background-color: #f4f4f4;
}

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

.why-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.why-content p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #333;
}

.cta-about {
    padding: 80px 60px;
    background-color: #fff;
    text-align: center;
}

.cta-about h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.btn-cta-secondary {
    background-color: #2c5f7d;
    color: #fff;
    padding: 16px 40px;
    display: inline-block;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #1a3d52;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.service-detail-header {
    background-color: #0a1a26;
    color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 30px;
    font-weight: 400;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #5a8aa6;
}

.service-detail-body {
    padding: 40px;
}

.service-detail-body p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #333;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #444;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: bold;
}

.service-format {
    font-size: 15px;
    font-style: italic;
    color: #666;
    margin: 24px 0;
}

.services-cta {
    padding: 80px 60px;
    background-color: #f4f4f4;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #0a1a26;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #444;
}

.contact-info-section {
    padding: 80px 60px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f7d;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0a1a26;
}

.contact-item p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-additional {
    padding: 80px 60px;
    background-color: #f4f4f4;
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #0a1a26;
}

.contact-additional p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.contact-map-placeholder {
    padding: 80px 60px;
    background-color: #fff;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: #0a1a26;
    color: #e8e8e8;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.map-info p {
    font-size: 18px;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f9f9f9;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.thanks-container h1 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #0a1a26;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px;
    background-color: #f4f4f4;
    margin: 30px 0;
    font-size: 18px;
    color: #2c5f7d;
    font-weight: 600;
}

.thanks-info {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1a3d52;
}

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

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

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #fff;
}

.legal-document h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #0a1a26;
}

.legal-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.legal-document section {
    margin-bottom: 40px;
}

.legal-document section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0a1a26;
}

.legal-document section p,
.legal-document section ul {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.legal-document ul {
    padding-left: 30px;
}

.legal-document ul li {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .hero-title {
        font-size: 42px;
    }

    .intro-split,
    .insight-magazine {
        flex-direction: column;
    }

    .testimonial-row {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-overlay {
        padding: 40px 30px;
    }

    .intro-split,
    .insight-magazine,
    .services-preview,
    .story-deep,
    .form-section,
    .final-insight {
        padding: 60px 30px;
    }

    .services-grid-magazine {
        gap: 30px;
    }

    .service-card {
        padding: 30px;
    }

    .benefit-offset-left,
    .benefit-offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-magazine {
        padding: 40px 30px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .approach-grid {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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