/* Oferta button styles */
.about-cta {
    display: flex;
    justify-content: flex-start;
}
/* Animowany przycisk OFERTA */
.oferta-btn {
    display: inline-block;
    position: relative;
    background: #2c5f6f;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0 ;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(33,150,243,0.12);
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.2s, transform 0.2s;
}
.oferta-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #9d9d9d;
    z-index: 0;
    transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}
.oferta-btn:hover::before, .oferta-btn:focus::before {
    width: 100%;
}
.oferta-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}
.oferta-btn:hover span, .oferta-btn:focus span {
    color: #fff;
}
.oferta-btn:hover, .oferta-btn:focus {
    box-shadow: 0 4px 18px rgba(33,150,243,0.18);
}

/* Podstawowy styl dla podstrony O nas */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #181c22;
    color: #e6e6e6;
    margin: 0;
    padding: 0;
}
.about-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 4vw 0;
    background: #181c22;
    box-sizing: border-box;
}
.about-content {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 2.5rem 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.about-content h1 {
    color: #4a90a4;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}
.about-content h2 {
    color: #ffffff;
    font-size: 3.1rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}
.about-content ul {
    margin: 1.2rem 0 0 1.2rem;
    padding: 0;
    color: #e6e6e6;
    font-size: 1.1rem;
    list-style: disc inside;
}
.about-content p {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #232a33;
    color: #aaa;
    font-size: 1rem;
    margin-top: 3rem;
}
@media (max-width: 800px) {
    .about-content {
        padding: 1.2rem 0.7rem;
        max-width: 98vw;
    }
    .about-content h1 {
        font-size: 1.3rem;
    }
    .oferta-btn {
        margin-left: 60px;
    }

}

/* Header banner styles for o-nas.html */
.header-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.header-banner-img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}
body {
    overflow-x: hidden;
}
.header-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-banner-overlay h1 {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Wide panel style for full-width sections */
.wide-panel {
  max-width: 1100px;
  width: 100%;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  background: none;
}
@media (min-width: 900px) {
  .wide-panel .process-section {
    max-width: 100%;
    margin: 0;
    background: #232a33;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem;
  }
}


