/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #F7F4F1;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #F1E9E2;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #A97C61;
}

h1 {
    text-align: center;
    margin: 40px 0;
    font-size: 2.5em;
}

.services, .approach, .techniques {
    padding: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h2 {
    margin: 15px 0 10px;
    font-size: 1.5em;
    color: #A97C61;
}

.card p {
    margin-bottom: 10px;
}

.button {
    text-decoration: none;
    display: inline-block;
    background-color: #A97C61;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #8A5D45;
}

.approach, .techniques {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 20px;
}

.text-container {
    max-width: 50%;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #F1E9E2;
    color: #666;
    font-size: 0.9em;
}
