body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7fafd;
    color: #232c3d;
    margin: 0;
    padding: 0;
}
a { color: #234a91; }
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 24px;
}
header {
    background: #234a91;
    color: #fff;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3em;
    font-weight: bold;
}
nav {
    display: flex;
    gap: 22px;
}
nav a {
    color: #fff;
    font-weight: 500;
    transition: opacity 0.2s;
}
nav a:hover { opacity: 0.7; }
.hero {
    background: linear-gradient(90deg, #fffde9 55%, #eaf1fb 100%);
    border-bottom: 2px solid #eaf1fb;
}
.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    flex: 2;
}
.hero h1 {
    font-size: 2em;
    margin-top: 18px;
    margin-bottom: 14px;
    color: #234a91;
}
.hero-img { flex: 1; margin-top: 18px; min-width: 120px;}
.cta-btn {
    background: #ffe181;
    color: #234a91;
    padding: 10px 26px;
    border-radius: 22px;
    font-weight: 600;
    border: none;
    margin-top: 18px;
    display: inline-block;
    transition: background 0.2s;
    text-decoration: none;
}
.cta-btn:hover { background: #234a91; color: #fff; }
.section { padding: 48px 0 20px 0; }
h2 { color: #234a91; font-size: 1.5em; margin-bottom: 20px;}
.story-flex {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.story-img { flex: 1; min-width: 70px;}
.story-flex p { margin-bottom: 14px;}
.blue { color: #234a91; font-weight: bold;}
.kribox {
    background: #eaf1fb;
    border-radius: 15px;
    padding: 22px;
    font-size: 1.07em;
    box-shadow: 0 2px 8px #0001;
}
.kribox ul { padding-left: 16px; }
.kribox li { margin-bottom: 12px;}
.oferta-steps {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.oferta-steps > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 8px #0001;
    padding: 14px 7px 9px 7px;
}
.oferta-steps span { margin-top: 7px; text-align: center;}
.oferta-footer { text-align: center; font-weight: bold; margin-top: 18px;}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 430px;
    margin-top: 12px;
}
input, select, textarea {
    padding: 10px;
    border: 1px solid #c0dafc;
    border-radius: 8px;
    font-size: 1em;
}
button[type="submit"] {
    background: #234a91;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 7px;
}
button[type="submit"]:hover { background: #7bb1fc; color: #234a91;}
.firma { margin-top: 18px; font-size: 1em;}
footer {
    background: #234a91;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    margin-top: 38px;
}
@media (max-width: 900px) {
    .hero-content, .story-flex, .oferta-steps { flex-direction: column; gap: 18px; }
    .oferta-steps > div { width: 100%; }
}
.logo-texts {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-main {
    font-size: 1.0em;
    font-weight: bold;
}
.logo-motto {
    font-size: 0.75em;
    color: #ffe181;
    font-style: normal;
    letter-spacing: 0.5px;
    margin-top: 3px;
    margin-left: 1px;
    text-shadow: 0 1px 2px #234a9133;
}
@media (max-width: 600px) {
    .logo-motto {
        font-size: 0.95em;
        font-style: normal;
        margin-left: 0;
        text-align: center;
    }
}
.form-subtext {
  font-size: 1em;
  color: #234a91;
  margin: 12px 0 20px 0;
  font-weight: 500;
}
.subheading {
  margin-top: 0.1em;
  font-weight: normal;
  font-size: 1.1em; /* możesz dopasować */
  color: #234a91; /* zgodnie z designem */
}