body{
    background-color: #f0f8ff;
}

.main-header{
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    height: 70vh;
    background: url(/img/svsbg.webp) center center/cover no-repeat;
}
.main-header .container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
}
.header-container{
    position: relative;
    z-index: 100;
}

.navbar{
    background-color: #195e87;
    
}
h1{
    font-size: 60px;
    font-weight: bold;
    padding: 10px;
    color: #254e5e;
}
h2{
    font-weight: bold;
    color: #254e5e;
    border-radius: 8px;
    font-size: 34px;
    margin-bottom: 22px;
}
.header-text-box{
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    
}
.nav-link{
    color: #fff;
    font-weight: 600;
}
header .nav-link:hover{
    border-bottom: 1px solid #cf6807;
    color: #fff;
}
.slogan{
    
    color: #254e5e; 
    padding: 10px;

}
.btn{
    padding: 10px 50px;
    font-weight: 600;
    border: 1px solid #fff;
    background-color: #195e87;
}
.btn:hover{

    border: 1px solid #fff;
    background-color: #2177a8;
}
.navbar-brand{
    margin-left: 100px;
}

main{
    background-color: #fff;
    border-radius: 10px;
}
section{
    padding: 30px;
}
.important{
    background-color: #fff2f2;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}
.application-process {
    display: flex;
    margin: 0px 5px;
    padding: 20px;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
  }
  .step-item{
    background-color: #ebf2ff;
    margin: 5px 5px;
    padding: 20px;
    border-radius: 10px;
    list-style-type: none;
  }
  .step-item b{
    font-size: 20px;
    color: rgb(11, 165, 11);
  }
.button-div{
    display: flex;
    justify-content: center;
}
.img-text{
    border-radius: 10px;
    box-shadow: 10px 10px 10px #999;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
th {
    background-color: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
}
details {
  background-color: #195e87;
  padding: 8px;
  margin: 5px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  color: #fff !important;
}
details p{
    margin-top: 15px;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    color: #195e87;
}

#section3,
#section6 {
    background: #ffffff;
  }

.footer-links li{
    list-style-type: none;
    margin: 5px 0;
}

.footer-links{
    text-align: justify;
}
/* Responsywność dla małych ekranów */
@media (max-width: 450px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    th, td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: left !important;
    }
    tr {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid #ddd;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    th {
        text-align: center;
    }
    section{
        padding: 10px;
    }
    h1{
        font-size: 50px;
    }
    .header-container{
        background-color: whitesmoke;
        padding: 10px;
    }
    h2{
        margin-top: 30px;
    }
    .application-process{
        display: block;
    }
    .navbar-brand{
        margin-left: 0px;
    }
}
@media (max-width: 767px) {
    .main-header{
        height: 80vh;
    }
}