/* Style.css - Responsive Design für IT-Unternehmen */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #003d66;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffcc00;
}

.hero {
    background: linear-gradient(135deg, #003d66, #0066cc);
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 80px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #003d66;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e6b800;
    transform: scale(1.05);
}

.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003d66;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #f5f9ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #003d66;
    margin-bottom: 10px;
}

.about {
    padding: 80px 0;
    background: #f0f7ff;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003d66;
}

.footer {
    background: #003d66;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2em;
    }
}