* {
    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.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5364;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5364;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5364;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f3d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 83, 100, 0.3);
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text-wide {
    flex: 1.5;
}

.intro-text-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text-wide p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.intro-image-offset {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.principle-cards {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.principle-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.principle-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    max-width: 380px;
    width: 100%;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.principle-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.principle-card p {
    padding: 0 24px 16px 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.card-price {
    padding: 0 24px 20px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #2c5364;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin-top: 60px;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 8px;
    color: #2c5364;
}

.selected-service-display p {
    margin: 4px 0;
    font-size: 16px;
}

.form-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.form-right input,
.form-right textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-right input:focus,
.form-right textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.insight-block {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-content {
    flex: 1.3;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.insight-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.insight-content a:hover {
    text-decoration: underline;
}

.insight-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-inline {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5364;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #888;
    font-size: 15px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px 40px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: #34495e;
    border-radius: 6px;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: white;
    text-align: center;
    padding: 0 40px;
}

.about-content-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5364;
}

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

.approach-narrative {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.narrative-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.narrative-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 24px;
}

.team-reference {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.team-reference h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-reference p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-header {
    max-width: 1000px;
    margin: 80px auto 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-listing {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
}

.service-item-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-info {
    flex: 1.2;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c5364;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.cta-section-services {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #2c5364;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.cta-section-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section-services p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: white;
    color: #2c5364;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-page-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5364;
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.contact-additional {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5364;
}

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

.thanks-page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-container {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5364;
    color: white;
}

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

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.legal-page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c5364;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

    .hero-right {
        min-height: 400px;
    }

    .intro-asymmetric,
    .about-content-split,
    .insight-block,
    .service-item-split,
    .contact-page-layout {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

    .nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .hero-overlay h1 {
        font-size: 36px;
    }

    .intro-text-wide h2,
    .about-text h2,
    .insight-content h2,
    .services-header h1 {
        font-size: 32px;
    }

    .principle-cards h2,
    .values-section h2 {
        font-size: 32px;
    }

    .top-nav {
        padding: 16px 20px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}
