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

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

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

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

.nav-links a {
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a5490;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #88c0ff;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3a6b;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background-color: #e8f1f8;
}

.hero-content-offset {
    flex: 1;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #444;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.3);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    padding: 6% 5%;
    gap: 5%;
    align-items: center;
    background-color: #ffffff;
}

.intro-text-narrow {
    flex: 1.2;
    max-width: 650px;
}

.intro-text-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-narrow p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

.intro-visual-right {
    flex: 0.8;
    background-color: #f0f0f0;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-block {
    padding: 5% 10%;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.problem-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.insight-asymmetric {
    display: flex;
    min-height: 70vh;
}

.insight-left {
    flex: 0.6;
    background-color: #ddd;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 6% 8%;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.insight-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.testimonial-card-offset {
    padding: 4% 5% 4% 15%;
    background-color: #e8f1f8;
}

.testimonial {
    max-width: 700px;
    margin-left: auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 5px solid #1a5490;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.services-grid-asymmetric {
    padding: 6% 5%;
    background-color: #fafafa;
}

.services-header {
    margin-bottom: 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

.card-1 {
    margin-left: 0;
}

.card-2 {
    margin-left: 8%;
}

.card-3 {
    margin-left: 4%;
}

.card-4 {
    margin-left: 12%;
}

.card-5 {
    margin-left: 6%;
}

.form-section-offset {
    padding: 6% 5% 6% 10%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #666;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    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: #1a5490;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.trust-block {
    padding: 6% 5%;
    background-color: #f8f8f8;
}

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.trust-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem 1.5rem;
    color: #1a5490;
}

.trust-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #444;
    line-height: 1.6;
}

.final-cta-asymmetric {
    padding: 8% 5%;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #1a5490;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: #e8f1f8;
    transform: translateY(-2px);
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4% 5% 2% 5%;
}

.footer-content {
    display: flex;
    gap: 5%;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

.page-hero {
    padding: 6% 5%;
    background-color: #e8f1f8;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

.about-story {
    display: flex;
    padding: 6% 5%;
    gap: 5%;
    align-items: center;
    background-color: #ffffff;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.story-visual {
    flex: 0.7;
    background-color: #e0e0e0;
}

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

.mission-block {
    padding: 5% 10%;
    background-color: #f8f8f8;
    text-align: center;
}

.mission-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    color: #444;
}

.team-section {
    padding: 6% 5%;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    margin-bottom: 2rem;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: #e0e0e0;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.values-asymmetric {
    padding: 6% 5% 6% 8%;
    background-color: #f8f8f8;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    padding-left: 5%;
    border-left: 4px solid #1a5490;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.value-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
}

.stats-block {
    padding: 6% 5%;
    background-color: #1a5490;
    color: #ffffff;
}

.stats-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stats-grid {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    color: #e8f1f8;
}

.services-detail {
    padding: 4% 5%;
    background-color: #fafafa;
}

.service-detail-card {
    display: flex;
    gap: 5%;
    margin-bottom: 5rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 4%;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.6rem;
    color: #444;
    line-height: 1.6;
}

.btn-service-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

.service-detail-visual {
    flex: 0.8;
    background-color: #e0e0e0;
}

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

.services-cta {
    padding: 4% 5%;
    background-color: #e8f1f8;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

.contact-content {
    display: flex;
    padding: 6% 5%;
    gap: 5%;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.contact-info-block p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.contact-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
}

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

.contact-additional {
    padding: 6% 5%;
    background-color: #f8f8f8;
}

.contact-additional h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.faq-item p {
    color: #444;
    line-height: 1.6;
}

.thanks-hero {
    display: flex;
    min-height: 70vh;
    padding: 6% 5%;
    gap: 5%;
    align-items: center;
    background-color: #e8f1f8;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
}

.thanks-service-info {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.thanks-next-steps ol {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3a6b;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.thanks-visual {
    flex: 0.7;
    background-color: #e0e0e0;
}

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

.legal-page {
    padding: 4% 10%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.6;
}

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

    .hero-content-offset {
        max-width: 100%;
    }

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

    .intro-offset,
    .about-story,
    .insight-asymmetric,
    .contact-content,
    .thanks-hero,
    .service-detail-card {
        flex-direction: column;
    }

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

    .card-1, .card-2, .card-3, .card-4, .card-5 {
        margin-left: 0;
    }

    .form-section-offset {
        padding: 6% 5%;
    }

    .nav-links {
        gap: 1rem;
    }
}
