/** Reset i style ogólne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Nagłówek */
header {
    background-color: #fef9f6;
    padding: 0rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-img {
    max-width: 300px;
    height: auto;
}

.title {
    color: #2c3e50;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Nagłówek strony */
.page-title {
    color: #2c3e50;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-align: left;
}

.page-title span {
    color: #3498db;
    font-weight: 300;
}

/* Kontener główny */
.container {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 0 .5rem;
}

/* Sekcje */
section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

h2 {
    color: #2980b9;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

/* Lista usług */
.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

/* Kontakt - Wyłącznie Email */
.contact-box {
    text-align: center;
    padding: 2rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
}

.email-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Stopka */
footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #95a5a6;
    font-size: 0.85rem;
}

/* Responsywność */
@media (max-width: 600px) {
    .page-title { font-size: 1.8rem; }
    section { padding: 1rem; }
    .email-link { font-size: 1.1rem; }
}
