<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: #FFFBF7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER Z LOGO */
header {
    background-color: #CBDBFC;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid rgba(0,0,0,0.1);
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background-color: #FFFBF7;
    border-radius: 20px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a2e;
    border: 3px dashed #1a1a2e;
}

/* Wklej tu swoje logo: */
.logo-placeholder { background-image: url('logo.png'); background-size: cover; } */

h1 {
    font-size: 2.8rem;
    color: #1a1a2e;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    color: #444;
    margin-top: 0.5rem;
}

/* SEKCJE */
section {
    padding: 2.5rem 0;
}

h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
/* W pliku style.css dodaj: */
.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* To pozwala zawijać */
    gap: 1rem; /* Zamiast marginesów */
    margin-top: 2rem;
}

.contact-link {
    background: white;
    padding: 0.8rem 1.5rem; /* Mniejsze paddingi na mobile */
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Wyśrodkowanie tekstu */
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-width: 140px; /* Minimalna szerokość */
    text-align: center;
    box-sizing: border-box; /* Ważne! */
}

/* Media query dla telefonów */
@media (max-width: 480px) {
    .contact-links {
        flex-direction: column; /* Układ pionowy */
        align-items: center;
        gap: 0.8rem;
    }

    .contact-link {
        width: 90%; /* Zajmuje 90% szerokości */
        max-width: 300px;
        padding: 0.9rem;
    }
}
/* USŁUGI */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 2px solid #CBDBFC;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {Tester
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    color: #0d7377;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

.promo {
    background-color: #CBDBFC;
    border-color: #1a1a2e;
}
/* Styl dla bloku kodu raportu */
.raport-code {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
    border-left: 4px solid #0d7377;
    margin: 1rem 0;
}

/* Listy w raporcie */
.raport-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.raport-list li {
    margin-bottom: 0.5rem;
}

/* Box z CTA */
.cta-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 2px solid #0d7377;
}

/* KONTAKT */
.contact-section {
    background-color: #CBDBFC;
    padding: 3rem 0;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-link:hover {
    background: #1a1a2e;
    color: white;
    transform: scale(1.05);
}

/* STOPKA */
footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-links { flex-direction: column; align-items: center; }
    .contact-link { width: 100%; max-width: 300px; justify-content: center; }
}
</style>
