/* Grundlayout */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #0f1c2e, #1f3556);
    color: #ffffff;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 800px;
}

/* Sections */

.section {
    padding: 60px 0;
}

.section-gray {
    background-color: #f4f6f8;
}

.section-dark {
    background-color: #0f1c2e;
    color: #ffffff;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.section p {
    max-width: 900px;
}

/* Lists */

ul {
    max-width: 900px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Grid */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Dark section cards override */

.section-dark .card {
    background-color: #1f3556;
    color: #ffffff;
}

/* Call to action */

.cta {
    font-weight: bold;
    margin-top: 20px;
}

/* Footer */

.footer {
    background-color: #111;
    color: #bbb;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #bbb;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.content-image {
    margin: 30px 0;
    text-align: center;
}

.content-image img {
	max-width: 500px;
    width: 100%;
    height: auto;
}

.content-image figcaption {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}

.cta-button {
    text-align: center;
    margin: 40px 0;
}

.cta-button a {
    display: inline-block;
    background-color: #0072ce;   /* kräftiges Blau, passend zu Tech/Aerospace */
    color: #ffffff;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button a:hover {
    background-color: #005ea3;   /* dunkleres Blau beim Hover */
    transform: translateY(-2px);
}


