/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9fbe7;
    color: #333;
    margin: 20px;
}

header {
    background-color: #ffeb3b;
    padding: 10px 0;
    text-align: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.phone-big {
    font-size: 20px;
    font-weight: bold;
}

nav {
    background-color: #ffc107;
    padding: 10px 0;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
}

nav a:hover {
    background-color: #ffa000;
    color: white;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff9c4;
    border-radius: 5px;
    text-align: center;
}

.container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.container p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

footer {
    background-color: #ffd54f;
    padding: 10px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
}

.footer-content p {
    margin-bottom: 5px;
}

.footer-content a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.footer-content a:hover {
    text-decoration: underline;
}
