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

body {
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0a1625 0%, #1a2844 50%, #0d1b2a 100%);
    color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.9), rgba(13, 27, 42, 0.9));
    border-radius: 15px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 192, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40c0f0, transparent);
    opacity: 0.6;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-icon {
    position: relative;
    width: 1em;
    height: 1em;
    margin: 0 0.1em;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.15em solid transparent;
    border-top-color: #40c0f0;
    border-right-color: #40c0f0;
    border-radius: 50%;
    transform: rotateZ(-45deg);
    box-shadow: 0 0 20px rgba(64, 192, 240, 0.5);
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.15em solid transparent;
    border-bottom-color: #89cff0;
    border-left-color: #89cff0;
    border-radius: 50%;
    transform: rotateZ(-45deg);
    box-shadow: 0 0 20px rgba(137, 207, 240, 0.5);
}

.tagline {
    text-align: right;
    font-size: 0.9rem;
}

.tagline-main {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 5px;
}

.tagline-sub {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 40, 68, 0.3));
    border: 1px solid rgba(64, 192, 240, 0.3);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #40c0f0, transparent);
    opacity: 0.8;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #89cff0;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(137, 207, 240, 0.3);
}

.hero .description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #00b2a9, #0291BA);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 178, 169, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0291BA, #00b2a9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 178, 169, 0.4);
}

/* Content Sections */
.section {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8) 0%, rgba(13, 27, 42, 0.9) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 192, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40c0f0, transparent);
    opacity: 0.6;
}

/* German Flag Accent for German Impact Section */
.german-impact-section {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8) 0%, rgba(13, 27, 42, 0.9) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 206, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.german-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #000000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
    opacity: 0.8;
}

.german-flag-icon {
    display: inline-block;
    width: 24px;
    height: 16px;
    background: linear-gradient(to bottom, #000000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(255, 206, 0, 0.3);
}

.section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.section h3 {
    color: #40c0f0;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 30px 0 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

.section p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.section ul li {
    color: #cccccc;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #40c0f0;
    font-weight: bold;
}

.section ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin: 20px 0;
}

.section ol li {
    color: #cccccc;
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
    counter-increment: item;
}

.section ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #40c0f0;
    font-weight: bold;
}

.highlight {
    color: #00b2a9;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 178, 169, 0.3);
}

.electric-highlight {
    color: #40c0f0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

.german-highlight {
    color: #ffce00;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 206, 0, 0.3);
}

/* Special Cards */
.high-tech-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 40, 68, 0.3));
    border: 1px solid rgba(64, 192, 240, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.high-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #40c0f0, transparent);
    opacity: 0.8;
}

/* German-specific cards */
.german-regulatory-card {
    background: linear-gradient(135deg, rgba(255, 206, 0, 0.1), rgba(221, 0, 0, 0.1));
    border: 1px solid rgba(255, 206, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.german-regulatory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
    opacity: 0.8;
}

/* Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(64, 192, 240, 0.1);
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: '▶';
    color: #00b2a9;
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 10px rgba(0, 178, 169, 0.5);
}

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

/* German-specific feature list */
.german-feature-list {
    list-style: none;
    padding: 0;
}

.german-feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 206, 0, 0.2);
    position: relative;
    padding-left: 40px;
}

.german-feature-list li::before {
    content: '🇩🇪';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #40c0f0;
    text-shadow: 0 0 20px rgba(64, 192, 240, 0.5);
}

.stat-label {
    color: #cccccc;
    margin-top: 10px;
}

/* German statistics styling */
.german-stat-card {
    background: linear-gradient(135deg, rgba(255, 206, 0, 0.1), rgba(221, 0, 0, 0.1));
    border: 1px solid rgba(255, 206, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.german-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffce00;
    text-shadow: 0 0 20px rgba(255, 206, 0, 0.5);
}

/* Path Cards */
.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.path-card {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.path-title {
    color: #40c0f0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

/* Risk Cards */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.risk-card {
    background: linear-gradient(135deg, rgba(255, 35, 0, 0.1), rgba(255, 206, 0, 0.1));
    border: 1px solid rgba(255, 206, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.risk-title {
    color: #FFCE00;
    font-weight: 600;
    margin-bottom: 10px;
}

/* German Solution Grid */
.german-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.german-solution-card {
    background: linear-gradient(135deg, rgba(255, 206, 0, 0.1), rgba(221, 0, 0, 0.1));
    border: 1px solid rgba(255, 206, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    position: relative;
}

.german-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%);
    opacity: 0.6;
}

.german-solution-title {
    color: #ffce00;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 206, 0, 0.3);
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.solution-card {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.solution-title {
    color: #40c0f0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.benefit-title {
    color: #40c0f0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

/* Case Study Grid */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.case-study-title {
    color: #40c0f0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

/* Playbook Steps */
.playbook-steps {
    margin: 25px 0;
}

.playbook-step {
    background: linear-gradient(135deg, rgba(0, 178, 169, 0.1), rgba(64, 192, 240, 0.1));
    border: 1px solid rgba(0, 178, 169, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.playbook-step h4 {
    color: #40c0f0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(64, 192, 240, 0.3);
}

/* Quote */
.quote {
    font-style: italic;
    color: #89cff0;
    border-left: 3px solid #40c0f0;
    padding-left: 20px;
    margin: 20px 0;
    text-shadow: 0 0 8px rgba(137, 207, 240, 0.2);
    font-size: 1.1rem;
}

.german-quote {
    font-style: italic;
    color: #ffce00;
    border-left: 3px solid #ffce00;
    padding-left: 20px;
    margin: 20px 0;
    text-shadow: 0 0 8px rgba(255, 206, 0, 0.2);
    font-size: 1.1rem;
}

/* Footer Links */
.further-reading {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.9), rgba(13, 27, 42, 0.9));
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.reading-link {
    color: #89cff0;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid rgba(137, 207, 240, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.reading-link:hover {
    background: rgba(137, 207, 240, 0.1);
    border-color: #89cff0;
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-item {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.6), rgba(13, 27, 42, 0.8));
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(64, 192, 240, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 178, 169, 0.5);
    transform: translateY(-2px);
}

.faq-question {
    color: #40c0f0;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    color: #00b2a9;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 40, 68, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(64, 192, 240, 0.2), rgba(0, 178, 169, 0.2));
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(64, 192, 240, 0.1);
}

.comparison-table th {
    font-weight: 600;
    color: #40c0f0;
    font-size: 1rem;
}

.comparison-table td {
    color: #cccccc;
}

.comparison-table tr:hover {
    background: rgba(64, 192, 240, 0.05);
}

.comparison-table tr.highlight {
    background: rgba(64, 192, 240, 0.1);
    font-weight: 600;
}

.comparison-table tr.highlight td {
    color: #ffffff;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.compliance-card {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
    border-color: rgba(64, 192, 240, 0.4);
}

.compliance-card h4 {
    color: #40c0f0;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.compliance-card p,
.compliance-card ul {
    color: #cccccc;
    line-height: 1.6;
}

.compliance-card ul {
    list-style: none;
    padding-left: 0;
}

.compliance-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.compliance-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #40c0f0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
    border-color: rgba(64, 192, 240, 0.4);
}

.benefit-card h3 {
    color: #40c0f0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card ul {
    list-style: none;
    padding-left: 0;
}

.benefit-card ul li {
    color: #cccccc;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefit-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b2a9;
    font-weight: bold;
}

/* Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
    border-color: rgba(64, 192, 240, 0.4);
}

.use-case-card h3 {
    color: #40c0f0;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.use-case-card h4 {
    color: #89cff0;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.use-case-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Challenge Grid */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.challenge-card {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
    border-color: rgba(64, 192, 240, 0.4);
}

.challenge-card h3 {
    color: #40c0f0;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.challenge-card p,
.challenge-card ul {
    color: #cccccc;
    line-height: 1.6;
}

.challenge-card ul {
    list-style: none;
    padding-left: 0;
}

.challenge-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.challenge-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #40c0f0;
}

/* Roadmap */
.roadmap {
    margin: 30px 0;
}

.roadmap-phase {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    border-color: rgba(64, 192, 240, 0.4);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
}

.phase-header {
    margin-bottom: 20px;
}

.phase-number {
    display: inline-block;
    background: linear-gradient(135deg, #00b2a9, #0291BA);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 15px;
    font-size: 0.9rem;
}

.phase-header h3 {
    display: inline;
    color: #40c0f0;
    font-size: 1.3rem;
    font-weight: 600;
}

.phase-content h4 {
    color: #89cff0;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.phase-content ul {
    list-style: none;
    padding-left: 0;
}

.phase-content ul li {
    color: #cccccc;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.phase-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #40c0f0;
}

.phase-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-top: 15px;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.resource-card {
    background: linear-gradient(135deg, rgba(26, 40, 68, 0.8), rgba(13, 27, 42, 0.9));
    border: 1px solid rgba(64, 192, 240, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 192, 240, 0.2);
    border-color: rgba(64, 192, 240, 0.4);
}

.resource-card h3 {
    color: #40c0f0;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    margin-bottom: 10px;
}

.resource-card a {
    color: #89cff0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #40c0f0;
    text-decoration: underline;
}

/* Germany Section */
.germany-section {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 204, 0, 0.2);
}

/* Utilities */
.text-right {
    text-align: right;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 25px;
    }
    
    .section h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
    }
    
    .section h3 {
        font-size: 1.4rem;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 20px 15px;
    }
    
    .section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
    }
    
    .solution-grid,
    .german-solution-grid,
    .benefits-grid,
    .case-study-grid,
    .path-grid,
    .risk-grid,
    .compliance-grid,
    .use-case-grid,
    .challenge-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}
