@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* ELEGANCKA PALETA - GRANATOWY, ZŁOTY & RÓŻOWY */
:root {
  /* Kolory główne */
  --primary-navy: #1B365D;
  --primary-gold: #D4AF37;
  --accent-blue: #4A90B8;
  --accent-pink: #E8A5D1;

  /* Warianty granatowego */
  --navy-dark: #0F1F35;
  --navy-light: #2E4A6B;
  --navy-subtle: #E8EDF4;

  /* Warianty złotego */
  --gold-dark: #B8941F;
  --gold-light: #E6C55A;
  --gold-subtle: #FDF8E8;

  /* Warianty różowego */
  --pink-dark: #D085B8;
  --pink-light: #F2C8E6;
  --pink-subtle: #FDF5FB;

  /* Kolory tekstu */
  --text-dark: #1B365D;
  --text-medium: #4A5568;
  --text-light: #718096;
  --text-white: #FFFFFF;

  /* Tła */
  --bg-soft: #FAFBFC;
  --bg-white: #FFFFFF;
  --border-soft: #E2E8F0;

  /* Gradienty */
  --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
  --gradient-pink: linear-gradient(135deg, var(--accent-pink) 0%, var(--pink-light) 100%);
  --gradient-warm: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-gold) 100%);

  /* Cienie */
  --shadow-soft: 0 4px 20px rgba(27, 54, 93, 0.08);
  --shadow-medium: 0 8px 30px rgba(27, 54, 93, 0.12);
  --shadow-strong: 0 15px 40px rgba(27, 54, 93, 0.15);
}

/*Reset*/
html, body{
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Lato', sans-serif;
  color: var(--text-dark);
}

body{
  background-image: url("https://image.ibb.co/de6JzG/bitmap_1_1.png");
  background-size:cover;
  background-repeat:no-repeat;
  background-position: center;
}

.sect{
  padding: 90px 0;
  position: relative;
}

.collapse{
 display: block;
}

.sect--grey{
  background: var(--navy-subtle);
}

.sect--violet{
  background: var(--gradient-primary);
}

.sect--padding-bottom{
  padding-bottom:115px;
}

.sect--padding-top{
  padding-top:90px;
}

.sect--white{
  background: transparent;
}

.sect--no-padding{
  padding-top:0;
}

.row--center{
  max-width: 1000px;
  margin: 0 auto;
}

.row--margin{
  margin-top:45px;
}

.header__img {
    width: 140px;
    height: 140px;
}

.row__title{
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin-top: 0px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.row__sub{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin: 0px;
  color: var(--text-light);
}

.row__sub--light{
  color: var(--gold-subtle);
  opacity: 0.9;
}

.price-box{
  padding: 0px 25px;
}

.price-box__wrap{
  background-color: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 35px 35px 40px 35px;
  text-align:center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.price-box__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-pink);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-box__wrap:hover::before {
  opacity: 1;
}

.price-box__wrap:hover {
  backface-visibility: hidden;
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-pink);
}

.price-box__img{
  display: inline-block;
  width:130px;
  height:130px;
  border-radius:50%;
  background-position: center;
  background-size:cover;
  background-repeat:no-repeat;
  border: 4px solid var(--accent-pink);
  transition: all 0.3s ease;
}

.price-box--purple .price-box__img{
  background-image: url("https://image.ibb.co/iGjEKG/1.png");
  border-color: var(--primary-navy);
}

.price-box--violet .price-box__img{
  background-image: url("https://image.ibb.co/iyT8eG/2.png");
  border-color: var(--accent-pink);
}

.price-box--blue .price-box__img{
  background-image: url("https://preview.ibb.co/nDRpmw/3.png");
  border-color: var(--primary-gold);
}

.price-box__title{
  font-family: 'Playfair Display', serif;
  font-size:22px;
  font-weight: 500;
  letter-spacing:0.5px;
  margin-bottom:8px;
  color: var(--text-dark);
}

.price-box__people{
  font-size:13px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing:0.5px;
  margin-bottom: 20px;
}

.price-box__discount{
  font-size: 28px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-box__dollar {
  font-size: 18px;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
}

.price-box--purple .price-box__dollar{
  color: var(--primary-navy);
}

.price-box--violet .price-box__dollar{
  color: var(--accent-pink);
}

.price-box--blue .price-box__dollar{
  color: var(--primary-gold);
}

.price-box__discount--light{
  font-weight: 400;
  font-size: 20px;
  margin-left: 3px;
  opacity: 0.8;
}

.price-box__price {
  margin-top: 3px;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 300;
  text-decoration: line-through;
}

.price-box__feat {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-medium);
}

.price-box__list {
  text-align: left;
  padding-left: 30px;
  margin: 0;
  list-style: none;
}

.price-box__list-el{
  position: relative;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--text-medium);
}

.price-box__list-el:before{
  content: "✓";
  position: absolute;
  left: -25px;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: bold;
}

.price-box--purple .price-box__list-el:before{
  background: var(--primary-navy);
}

.price-box--violet .price-box__list-el:before{
  background: var(--gradient-pink);
}

.price-box--blue .price-box__list-el:before{
  background: var(--gradient-gold);
}

.btn{
  background: var(--gradient-gold);
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  color: var(--primary-navy);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover{
  box-shadow: var(--shadow-medium);
  color: var(--primary-navy);
  text-decoration: none;
  transform: translateY(-2px);
}

.price-box__wrap:hover .btn {
  box-shadow: var(--shadow-medium);
}

.btn--revert{
  background-color:transparent;
  color: var(--text-medium);
  box-shadow: none;
  border: 2px solid var(--border-soft);
}

.btn--revert:hover{
  background: var(--pink-subtle);
  color: var(--primary-navy);
  border-color: var(--accent-pink);
  box-shadow: var(--shadow-soft);
}

.btn--purple {
  background: var(--gradient-primary);
  color: white;
}

.btn--purple:hover{
  background: var(--gradient-primary);
  filter: brightness(1.1);
  color: white;
}

.btn--violet {
  background: var(--gradient-pink);
  color: white;
}

.btn--violet:hover {
  background: var(--gradient-pink);
  filter: brightness(1.1);
  color: white;
}

.btn--blue {
  background: var(--gradient-gold);
  color: var(--primary-navy);
}

.btn--blue:hover {
  background: var(--gradient-gold);
  filter: brightness(1.1);
  color: var(--primary-navy);
}

.btn--width{
  min-width: 120px;
}

.btn--white{
  background-color: var(--bg-white);
  border: 2px solid var(--border-soft);
  color: var(--text-medium);
  box-shadow: var(--shadow-soft);
}

.btn--white:hover{
  background: var(--pink-subtle);
  color: var(--primary-navy);
  border-color: var(--accent-pink);
}

.price-box__btn {
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -60px;
}

.item__img{
  width:25px;
  margin-right:10px;
  display:inline-block;
}

.carousel{
  /* zachowuję oryginalny */
}

.row__carousel{
  display:inline-block;
  float:none;
  border-radius: 15px;
}

.row--text-center{
  text-align:center;
}

.carousel-control{
  opacity:1;
  background-image:none !important;
}

.carousel-control.left{
  left:-100px;
}

.carousel-control.right{
  right:-100px;
}

.carousel-inner{
  margin-top: -25px;
}

.carousel-control__img{
 position: absolute;
top: 50%;
margin-top: -90px;
}

.carousel-control.left .carousel-control__img{
  left:0;
}

.carousel-control.right .carousel-control__img{
  right:0;
}

.carousel-indicators li{
  height:12px;
  width:12px;
  background-color: var(--bg-white);
  border: 2px solid var(--accent-blue);
  margin-right:8px;
}

.carousel-indicators li.active{
  height:14px;
  width:14px ;
  background-color: var(--bg-white);
  border: 3px solid var(--accent-pink);
  margin-right:10px;
}

.item {
  text-align:left;
  position:relative;
  padding:25px 15px 0px 25px;
}

.item__content{
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  background-color: var(--bg-white);
  position: relative;
  height: 305px;
  border: 1px solid var(--border-soft);
}

.item__content:after{
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--bg-white);
  bottom: -20px;
  position: absolute;
  left: 50%;
  margin-left: -23px;
  filter: drop-shadow(0px 7px 4px rgba(0,0,0,.1));
}

.item__name{
  display: inline-block;
  font-size: 22px;
  vertical-align: middle;
  font-weight: 600;
  color: var(--text-dark);
}

.item__description {
  margin-top: 35px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 15px;
}

.item__avatar{
  height: 45px;
  width: 45px;
  background-image: url("https://static.pexels.com/photos/428333/pexels-photo-428333.jpeg");
  background-size: cover;
  border-radius: 50%;
  margin: 50px auto 15px auto;
  border: 3px solid var(--accent-pink);
}

.carousel-indicators {
  width: auto;
  margin: 0;
  right: 68px;
  text-align: right;
  top: 72px;
  left: auto;
  bottom: auto;
}

.item__people {
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
}

.item__occupation {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

.site{
  text-align: center;
}

.site__title{
  font-family: 'Georgia', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  margin: 0 0 15px 0;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.site__subtitle{
  font-size: clamp(18px, 3vw, 24px);
  color: var(--text-light);
  margin: 15px 0 40px 0;
  font-weight: 400;
  line-height: 1.5;
}

.site__img{
  margin-top: 50px;
  display: inline-block;
  width: 77%;
  max-width: 600px;
}

.site__box-link .btn--revert{
  margin-left: 15px;
}

/*menu header*/
.header{
  padding: 30px 25px;
}

.header__container{
  /* Usuń flex - oryginalnie tego nie było */
}

.header__elenco {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__menu {
  float: right;
}

.header__el{
  padding: 0 25px;
  display: inline-block;
}

.header__img{
  display: inline-block;
  vertical-align: right;
}

.header__logo, .header__menu{
  display: inline-block;
  vertical-align: middle;
}

.header__title{
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 0 10px;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.header__light{
  color: var(--accent-pink);
}

.header__link{
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header__link:hover{
  text-decoration: none;
  color: var(--accent-pink);
}

.navbar-toggle .icon-bar{
  background-color: var(--text-medium);
}

.navbar-toggle {
  margin: 5px 0;
  background: none;
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
}

.partner{
  margin-bottom:15px;
  text-align:center;
}

.partner_img{
  width:160px;
  opacity:0.6;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}

.partner_img:hover{
  transform: scale(1.05);
  opacity:1;
  filter: grayscale(0%);
}

.article-pre__col{
  padding:0 30px;
  margin-bottom:30px;
}

.article-pre__img {
  height: 0;
  background-position: center;
  background-size: cover;
  padding-bottom: 55%;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid var(--border-soft);
}

.article-pre__img--first{
   background-image: url(https://cdn.dribbble.com/users/18730/screenshots/2182635/newshot.png);
}

.article-pre__img--second{
  background-image: url(https://image.ibb.co/cYsvbw/dribbble.jpg);
}

.article-pre__img--third{
  background-image: url(https://cdn.dribbble.com/users/103909/screenshots/3671664/sensors-01.jpg);
}

.article-pre__img--fourth{
  background-image: url(https://cdn.dribbble.com/users/997070/screenshots/4120967/attachments/943230/01-1._Cover_Copy_2x.png);
}

.article-pre:hover .article-pre__img {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.article-pre:hover {
  text-decoration:none;
}

.article-pre__info {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  padding: 25px 25px 0 25px;
}

.article-pre__date {
  float: right;
}

.article-pre__title {
  font-size: 20px;
  color: var(--text-dark);
  margin: 0;
  padding: 15px 25px;
  font-weight: 500;
}

.article-pre__arrow--purple{
  color: var(--accent-pink);
}

.contacts_title-ag {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  margin-left: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.contacts__link{
  color: var(--text-dark);
  text-decoration: none;
}

.contacts--light {
  color: var(--accent-pink);
}

.contacts__address {
  margin-top: 20px;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 27px;
  padding-bottom: 12px;
  margin-bottom: 17px;
  position: relative;
}

.contacts__address:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--gradient-pink);
  bottom: 0;
  left: 0;
  border-radius: 1px;
}

.contacts__info {
  color: var(--text-medium);
  font-size: 16px;
  margin-bottom: 2px;
}

.contacts__info-link {
  color: var(--accent-pink);
  text-decoration:none;
}

.contacts__info-link:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

.form-group {
  margin-bottom: 20px;
  display: table;
  width: 100%;
  position:relative;
}

.form__field {
  height: 50px;
  position:relative;
  border: 2px solid var(--border-soft);
  padding: 10px 15px;
  width: 100%;
  border-radius: 10px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance:none;
  -o-appearance: none;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  z-index: 2;
  background: white;
  color: var(--text-dark);
  font-family: inherit;
}

.form__field:focus {
  outline: none;
  border-color: var(--accent-pink);
  box-shadow: var(--shadow-medium);
}

.form__select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23718096"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: calc(100% - 15px);
  background-position-y: center;
  background-color: white;
  color: var(--text-medium);
  cursor: pointer;
}

.form__field--half{
  width:50%;
  float:left;
}

.form__field--half:first-of-type{
  padding-right:15px;
}

.form__textarea{
  height:120px;
  resize: vertical;
  padding-top: 15px;
}

.btn--up{
  position: absolute;
  bottom: -15px;
  right: 25px;
  z-index: 3;
}

.career_title {
  color: var(--text-white);
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.career_sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-top: 0;
  margin-bottom: 30px;
}

.career-img {
  position: absolute;
  bottom: 0;
  width: 65%;
  z-index: 0;
  left: 20%;
  opacity: 0.8;
}

.footer{
  background: var(--primary-navy);
  padding: 40px 0;
}

.footer__title{
  font-size: 18px;
  margin: 0 0 0 10px;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
  color: var(--accent-pink);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.footer__light{
   color: var(--text-white);
}

.footer__social {
  float: right;
}

.footer__social-l {
  margin-left: 15px;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__social-l:hover {
  opacity: 1;
}

/* PRICING LIST STYLES */
.pricing-container {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-item {
  display: flex;
  align-items: center;
  padding: 25px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border-left: 5px solid var(--accent-pink);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-soft);
}

.pricing-item:hover {
  transform: translateX(15px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--pink-dark);
}

.pricing-item--purple {
  border-left-color: var(--primary-navy);
}

.pricing-item--violet {
  border-left-color: var(--accent-pink);
}

.pricing-item--blue {
  border-left-color: var(--primary-gold);
}

.pricing-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.pricing-icon--purple {
  background: var(--gradient-primary);
}

.pricing-icon--violet {
  background: var(--gradient-pink);
}

.pricing-icon--blue {
  background: var(--gradient-gold);
}

.pricing-item:hover .pricing-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.pricing-icon span {
  color: white;
  font-size: 26px;
}

.pricing-icon--violet span {
  color: white;
}

.pricing-icon--blue span {
  color: var(--primary-navy);
}

.pricing-content {
  flex-grow: 1;
}

.pricing-title {
  margin: 0 0 8px 0;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}

.pricing-description {
  margin: 0;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-price {
  text-align: right;
  margin-left: 20px;
}

.pricing-amount {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.pricing-amount--purple {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount--violet {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount--blue {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-duration {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  opacity: 0.8;
}

/* MEDIA QUERIES */
@media screen and (max-width:1024px){
  .collapse{
    display: none;
  }
  .navbar-toggle {
    margin: 0;
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
  }
  .header__container{
    width: 100%;
    padding: 0;
  }
  .header__menu {
    width: 100%;
  }
  .header{
    background-color: var(--bg-white);
    padding: 0;
    box-shadow: 0 2px 10px rgba(27, 54, 93, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
  }
  .header__logo{
    padding: 12px 20px 12px 20px;
  }
  .header__el {
    display: block;
    padding: 10px 20px;
    border-top: 1px solid var(--border-soft);
  }
  .header .btn--white, .header .btn--white:hover{
    padding: 0;
    border: 0;
    box-shadow: none;
    color: var(--text-white);
    background-color:transparent;
  }
  .header__el--blue{
    background-color: var(--accent-blue);
  }
}

@media screen and (max-width:991px){
  .price-box {
    padding: 0px 10px;
  }
  .carousel-control.left{
    left: -25px;
  }
  .carousel-control.right {
    right: -25px;
  }
  .item__content {
    height: auto;
  }
}

@media screen and (max-width:767px){
  .footer {
    padding: 25px 0;
  }
  .price-box {
    padding: 0px 35px;
    margin-bottom: 50px;
  }
  .site__img{
    width: 100%;
  }
  .item__content{
    padding: 20px;
  }
  .item__description {
    font-size: 14px;
    line-height: 1.5;
  }
  .article-pre__info {
    padding: 25px 10px 0 10px;
    font-size: 14px;
  }
  .article-pre__title {
    padding: 10px;
    font-size: 16px;
  }
  .form {
    margin-top: 30px;
  }
  .form__field--half:first-of-type {
    margin-bottom: 10px;
    padding-right: 0px;
  }
  .form__field--half {
    width: 100%;
    float: none;
  }
  .form-group {
    margin-bottom: 10px;
  }

  /* Responsywność dla pricing list */
  .pricing-item {
    padding: 20px;
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
  }

  .pricing-item:hover {
    transform: translateY(-5px);
  }

  .pricing-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .pricing-content {
    margin-bottom: 15px;
  }

  .pricing-price {
    text-align: center;
    margin-left: 0;
  }

  .pricing-title {
    font-size: 18px;
  }

  .pricing-amount {
    font-size: 24px;
  }
}

@media screen and (max-width:480px){
  .price-box {
    padding: 0px 20px;
  }
  .carousel-control__img{
    width: 20px;
  }
  .carousel-control.left {
    left: -5px;
  }
  .carousel-control.right {
    right: -5px;
  }
  .partner {
    width: 100%;
  }
  .footer {
    padding: 15px 0;
  }
  .footer__img {
    width: 15px;
  }
  .footer__title {
    font-size: 16px;
    margin-left: 5px;
  }
  .sect {
    padding: 60px 0;
  }
  .sect--padding-top{
    padding-top: 80px;
  }
  .row__sub {
    font-size: 16px;
  }
  .row__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .price-box__title {
    font-size: 20px;
    margin-top: 10px;
  }
  .price-box__img {
    width: 100px;
    height: 100px;
  }
  .price-box__wrap {
    padding: 20px 20px 30px 20px;
  }
  .price-box__people {
    font-size: 12px;
    font-weight: 400;
  }
  .price-box__discount {
    font-size: 24px;
  }
  .price-box__price {
    font-size: 12px;
  }
  .price-box__feat {
    margin-top: 15px;
    font-size: 14px;
  }
  .price-box__list-el {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .site__title {
    font-size: 24px;
  }
  .site__subtitle {
    font-size: 18px;
    margin: 10px 0 20px 0;
  }
  .site__img {
    margin-top: 30px;
  }
  .row--margin {
    margin-top: 30px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  .btn--width {
    min-width: 100px;
  }
  .career_title {
    font-size: 20px;
    margin-top: 0;
  }
  .career_sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .carousel-indicators {
    display: none;
  }
  .item__name {
    font-size: 18px;
  }
  .item__description {
    margin-top: 18px;
  }
  .article-pre__date {
    font-size: 12px;
    float: none;
  }
}

/* Dodatkowe utility classes */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }

/* Focus states dla accessibility */
.btn:focus,
.header__link:focus,
.form__field:focus {
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
}

/* Hover effects dla lepszej interaktywności */
.price-box:hover .price-box__title {
  color: var(--primary-navy);
}

.carousel-control:hover .carousel-control__img {
  transform: scale(1.1);
}

/* Poprawka dla przycisków w sekcji O nas */
.price-box__btn {
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -60px;
}

/* Specjalne style dla przycisków w sekcji O nas */
#about .price-box__btn {
  position: static;
  left: auto;
  margin-left: 0;
  bottom: auto;
  text-align: center;
  margin-top: 25px;
}

/* Alternatywnie - możesz używać tej klasy zamiast price-box__btn w sekcji O nas */
.about-btn {
  text-align: center;
  margin-top: 25px;
}

.about-btn .btn {
  display: inline-block;
}