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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 2.8rem;
    color: #1a252f;
}

h2 {
    font-size: 2.2rem;
    color: #1a252f;
}

h3 {
    font-size: 1.6rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.3rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #3498db;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-full {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(26, 37, 47, 0.6);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ecf0f1;
    max-width: 750px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    padding: 5rem 0;
}

.dark-bg {
    background: #2c3e50;
    color: #ecf0f1;
}

.dark-bg h2, .dark-bg h3 {
    color: #ffffff;
}

.dark-bg p {
    color: #ecf0f1;
}

.light-bg {
    background: #f8f9fa;
}

.accent-bg {
    background: #e8f4f8;
}

.split-content {
    padding: 5rem 0;
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.reverse {
    flex-direction: row-reverse;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.insight-card h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.citation {
    color: #3498db;
    font-size: 0.9rem;
    margin-left: 0.2rem;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #2980b9;
    text-decoration: underline;
}

.testimonial-block {
    padding: 5rem 0;
    background: #34495e;
    color: #ffffff;
}

.testimonial-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    margin: 0;
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: #bdc3c7;
}

.framework-visual {
    margin: 3rem 0;
}

.framework-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.section-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    text-align: center;
}

.services-preview {
    padding: 6rem 0;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #34495e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-content {
    flex: 1.2;
    padding: 3rem;
    color: #ecf0f1;
}

.service-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1.5rem;
}

.service-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
}

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

.form-section {
    padding: 6rem 0;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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: #3498db;
}

.btn-submit {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
    color: #ffffff;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 0;
    text-align: center;
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.disclaimer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.references {
    list-style-position: inside;
    font-size: 0.9rem;
}

.references li {
    margin-bottom: 0.8rem;
}

.references a {
    color: #3498db;
    transition: color 0.3s ease;
}

.references a:hover {
    color: #5dade2;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-links a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    background: #3498db;
    color: #ffffff;
}

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

.btn-cookie.btn-secondary {
    background: #7f8c8d;
}

.btn-cookie.btn-secondary:hover {
    background: #95a5a6;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.header-intro {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.principle-item {
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cta-block {
    padding: 5rem 0;
    text-align: center;
}

.services-detailed {
    padding: 4rem 0;
}

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

.service-card-image {
    flex: 1;
}

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

.service-card-content {
    flex: 1.5;
    padding: 3rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 1.5rem 0;
    list-style: none;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
}

.faq-section {
    padding: 5rem 0;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.final-cta-section {
    padding: 5rem 0;
    text-align: center;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: #3498db;
    margin-bottom: 0.8rem;
}

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-cta {
    padding: 4rem 0;
    text-align: center;
}

.location-info {
    padding: 4rem 0;
}

.thanks-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.next-steps h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.step-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.step-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.thanks-note {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 4rem 0;
    text-align: center;
}

.additional-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.additional-links a {
    padding: 1rem 2rem;
    background: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.additional-links a:hover {
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.effective-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

    .service-item {
        flex-direction: column;
    }

    .service-image {
        min-height: 300px;
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}