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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #ffffff;
    font-size: 16px;
}

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

a:hover {
    color: #1a3f52;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(40, 40, 40, 0.96);
    color: #ffffff;
    padding: 24px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #2c5f7c;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f7c;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #1a3f52;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5f7c;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5f7c;
}

.hero-asymmetric {
    padding: 80px 30px 60px;
    background-color: #fafbfc;
}

.hero-content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    max-width: 620px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f7c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a3f52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #2c5f7c;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c5f7c;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f7c;
    color: #ffffff;
}

.hero-image-offset {
    flex: 1;
    min-width: 320px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
}

.intro-overlap {
    padding: 100px 30px 80px;
    background-color: #ffffff;
    margin-top: -40px;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.intro-sidebar {
    flex: 0 0 340px;
    min-width: 280px;
}

.intro-sidebar h2 {
    font-size: 38px;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-sidebar p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

.intro-main-content {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    padding: 36px 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.services-creative {
    padding: 100px 30px;
    background-color: #f8fafb;
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 60px 80px;
}

.services-header-offset h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 800;
}

.services-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-item.large-item {
    flex: 1 1 calc(66.666% - 15px);
}

.service-item.offset-item {
    margin-left: 60px;
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f7c;
    margin-top: auto;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 12px 28px;
    background-color: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.consultation-form-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.form-intro-block {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.form-intro-block h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-intro-block p {
    font-size: 17px;
    color: #666666;
    line-height: 1.7;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 48px 40px;
    border-radius: 10px;
}

.selected-service-info {
    background-color: #e8f1f5;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selected-service-info p {
    margin: 0;
    font-size: 15px;
    color: #2c5f7c;
}

.selected-service-info strong {
    font-weight: 700;
    color: #1a3f52;
}

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

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

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

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

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

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

.trust-section {
    padding: 100px 30px;
    background-color: #fafbfc;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-image-block {
    flex: 0 0 480px;
    min-width: 320px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.trust-image-block img {
    width: 100%;
    height: 100%;
}

.trust-content-block {
    flex: 1;
    min-width: 320px;
}

.trust-content-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.inline-link {
    color: #2c5f7c;
    font-weight: 600;
    text-decoration: underline;
}

.inline-link:hover {
    color: #1a3f52;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f4f6f8;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    text-align: center;
    font-style: italic;
}

.page-hero-offset {
    padding: 100px 30px 60px;
    background-color: #fafbfc;
}

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

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
}

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

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-text-wide {
    flex: 1;
    min-width: 320px;
}

.story-text-wide h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text-wide p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.story-image-stack {
    flex: 0 0 420px;
    min-width: 300px;
}

.image-wrapper-about {
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.image-wrapper-about img {
    width: 100%;
    height: 100%;
}

.principles-section {
    padding: 80px 30px;
    background-color: #f8fafb;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.principles-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.principle-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    padding: 40px 36px;
    border-radius: 8px;
}

.principle-card.offset-card {
    margin-left: 50px;
}

.principle-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.principle-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #555555;
}

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

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content-block {
    flex: 1;
    min-width: 320px;
}

.approach-content-block h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.approach-visual-block {
    flex: 0 0 450px;
    min-width: 300px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.approach-visual-block img {
    width: 100%;
    height: 100%;
}

.values-highlight {
    padding: 80px 30px;
    background-color: #2c5f7c;
    color: #ffffff;
}

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

.values-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #ffffff;
}

.values-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
    color: #e8f1f5;
}

.services-detailed-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-lead {
    font-size: 18px;
    color: #2c5f7c;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 18px;
}

.service-includes {
    margin: 24px 0;
    padding-left: 20px;
}

.service-includes li {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.service-detail-price {
    font-size: 30px;
    font-weight: 700;
    color: #2c5f7c;
    margin: 28px 0 24px;
}

.service-detail-image {
    flex: 0 0 480px;
    min-width: 300px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

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

.contact-info-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-details-block {
    flex: 1;
    min-width: 320px;
}

.contact-details-block h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.email-display {
    color: #2a2a2a;
    font-weight: 500;
}

.contact-note {
    background-color: #f4f7f9;
    padding: 20px 24px;
    border-radius: 6px;
    margin-top: 36px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.contact-visual-block {
    flex: 0 0 480px;
    min-width: 300px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
}

.location-info-section {
    padding: 60px 30px;
    background-color: #f9fafb;
}

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

.location-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

.contact-cta-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.cta-content-centered h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 36px;
}

.thanks-section {
    padding: 120px 30px;
    background-color: #fafbfc;
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #e8f1f5;
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-details p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #2c5f7c;
}

.service-name-display {
    font-size: 20px;
    font-weight: 700;
    color: #1a3f52;
}

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

.next-steps h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
}

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

.step-item {
    background-color: #f9fafb;
    padding: 28px 32px;
    border-radius: 8px;
    border-left: 4px solid #2c5f7c;
}

.step-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

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

.legal-page-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5f7c;
    margin: 28px 0 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a3f52;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #888888;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f4f7f9;
}

.cookie-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a;
    border-bottom: 2px solid #d0d0d0;
}

.cookie-table td {
    padding: 12px 16px;
    font-size: 15px;
    color: #555555;
    border-bottom: 1px solid #e5e5e5;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #d0d0d0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 38px;
    }

    .hero-image-offset {
        height: 360px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-item.offset-item {
        margin-left: 0;
    }

    .principle-card.offset-card {
        margin-left: 0;
    }

    .main-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .services-header-offset h2 {
        font-size: 34px;
    }

    .section-title-centered {
        font-size: 32px;
    }
}