/* Header Styles */
.header {
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
}

/* Reset some default browser styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
}

/* Main Content Styles */
.main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Section Styles */
.main-content section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.intro {
    background-color: #f8d7da; /* Kolor sekcji intro */
}

.vehicle-management {
    background-color: #cce5ff; /* Kolor sekcji vehicle-management */
}

.live-fleet-map {
    background-color: #d4edda; /* Kolor sekcji live-fleet-map */
}

.historical-routes {
    background-color: #fff3cd; /* Kolor sekcji historical-routes */
}

.main-content h3 {
    color: #333;
}

.main-content p {
    color: #111; /* Poprawiona czytelność tekstu */
}

/* Call to Action Section Styles */
.call-to-action {
    background-color: #f08080;
    color: #fff;
    border-radius: 5px;
}

.center-buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

/* Footer Styles */
.footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
