/* Body styling */
body {
    background-image: url('/bilder/Autowelt.png');
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #ffffff;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #121212;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #ff6f61;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
    color: #cccccc;
}

/* Navigation bar styling */
nav {
    background-color: #121212;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #ff6f61;
}

nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    color: #ff6f61;
}

/* Main content area styling */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: rgba(46, 46, 46, 0.8);
}

.content h2 {
    color: #ff6f61;
    margin-bottom: 20px;
    text-align: center;
}

/* About us section styling */
.about-us p {
    margin-bottom: 15px;
}

/* Team section styling */
.team {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.team-member {
    text-align: center;
    max-width: 200px;
    flex: 1 1 calc(33.333% - 40px); 
    box-sizing: border-box;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 10px 0 5px;
    color: #ff6f61;
}

.team-member p {
    margin: 0;
    color: #cccccc;
}

/* Values section styling */
.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    margin-bottom: 10px;
}

.values strong {
    color: #ff6f61;
}

/* reviews */
.reviews {
    margin-top: 40px;
}

.review {
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.review img.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review p {
    margin: 0 0 10px;
    color: #ffffff;
}

.stars {
    color: #ff6f61;
    font-size: 1.5em;
}



/* Footer styling */
footer {
    background-color: #121212;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 2px solid #ff6f61;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5em;
    color: #ff6f61;
    margin-bottom: 15px;
}

.footer-section p {
    margin: 10px 0;
    color: #cccccc;
}

.footer-section i {
    margin-right: 10px;
    color: #ff6f61;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6f61;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #cccccc;
}