/* Base CSS - Grundlegende Styles für Büro joerg.oyen.de */

@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans:wght@400;600;700&display=swap');

/* Reset und grundlegende Styles */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inclusive Sans', sans-serif;
    background: #fff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Container für zentrierte Inhalte */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container a {
  color: #ff8c42;
  text-decoration: none;
  font-weight: 500;
}

.container a:hover {
  color: #e6752a;
}
/* Main Content Area */
main {
    flex: 1;
    display: block; /* Für Tests ausgeblendet */
}

section { 

ul, li {margin: 15px;}
}






/* Footer Styles */
.page-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #f5f5f5;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e6752a;
}