:root {
    --bg-color: #050D1D;
    --accent-color: #019DEA;
    --heading-color: #fff;
    --text-color: #B1BBD4;
    --block-bg: rgba(10,31,58,0.5);
    --footer-bg: rgba(10,31,58,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.shape{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 300px;
}
.shape2{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 300px;
}

.olpPage{
    padding: 50px 0;
}

.olpPage a{
    color: #fff;
}

.olpPage ul{
    padding-left: 20px;
    margin: 20px 0;
}

.olpPage h3{
    margin: 20px 0 18px 0;
}

.olpPage h2{
    font-size: 22px;
    margin-bottom: 30px;
}

.olpPage h3{
    font-size: 18px;
}

h2 span{
    color: #019DEA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', cursive;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeEffect 2s infinite alternate;
}

@keyframes fadeEffect {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}


.olpHeader {
    padding: 20px 0;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.olpHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.olpLogo {
    font-family: 'Audiowide';
    font-size: 20px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.olpLogo span {
    color: var(--accent-color);
}

.olpNav ul {
    display: flex;
    list-style: none;
}

.olpNav li {
    margin-left: 30px;
}

.olpNav a {
    color: var(--text-color);
    font-weight: 600;
}

.olpNav a:hover {
    color: var(--accent-color);
}


.olpBanner {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: url('../images/banner.jpg') center no-repeat;
    background-size: cover;
    max-width: 1300px;
    width: 100%;
    margin: 0px auto;
    border-radius: 30px;
}



.olpBanner h1 {
    margin-bottom: 20px;
    max-width: 760px;
    width: 100%;
}

.olpBanner h1 span {
    color: var(--accent-color);
}

.olpBanner p {
    max-width: 700px;
    width: 100%;
    margin: 0 0 30px;
    color: #ddd;
    font-size: 1.2rem;
}


.olpAbout {
    padding: 100px 0;


}

.olpAboutInner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.olpAboutText {
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
}

.olpAboutBox {
    background-color: rgba(1, 157, 234, 0.1);
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
}

.olpAboutBox p{
    margin-bottom: 0;
}

.olpTextSection {
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.olpTextSection.reverse {
    flex-direction: row-reverse;
}

.olpTextImage {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}



.olpTextContent {
    flex: 1;
    padding: 0 20px;
}

.olpTextContent h3{
    font-size: 36px;
}

.olpTextContent p{
    font-size: 18px;
}

.olpTextContent .subtitle {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.features-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-block img{
    max-width: 460px;
    width: 100%;
}

.olpPriorities {
    padding: 100px 0;
}

.olpPrioritiesHeader {
    text-align: center;
    margin-bottom: 60px;
}

.olpPrioritiesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.olpPriorityItem {
    background-color: var(--block-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.olpPriorityItem h3, .olpPriorityFull h3{
    font-size: 18px;

}

.olpPriorityItem p, .olpPriorityFull p{
    font-size: 17px;
}

.olpPriorityItem:hover {
    transform: translateY(-5px);
}

.olpPriorityIcon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    line-height: 0;
}

.olpPriorityIcon img{
    width: 55px;
}

.olpPriorityFull {
    background-color: var(--block-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}


.olpFaq {
    padding: 100px 0;
}

.olpFaqHeader {
    text-align: center;
    margin-bottom: 60px;
}

.olpFaqItem {
    background-color: var(--block-bg);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.olpFaqQuestion {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.olpFaqAnswer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.olpFaqItem.active .olpFaqAnswer {
    padding: 0 20px 20px;
    max-height: 200px;
}


.olpFooter {
    background-color: var(--footer-bg);
    padding: 60px 0 30px;
}

.olpFooterInner {
   
}

.olpFooterLogo {
    font-family: 'Audiowide', cursive;
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
}

.olpFooterLogo span {
    color: var(--accent-color);
}

.olpFooterLinks {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.olpFooterLinks a {
    color: var(--text-color);
}

.olpFooterDisclaimer {
    margin-bottom: 20px;
    font-size: 18px;
}

.olpFooterCopyright {
    font-size: 0.9rem;
}






@media (max-width: 992px) {
    .olpTextSection, .olpTextSection.reverse {
        flex-direction: column;
    }
    
    .olpTextImage, .olpTextContent {
        margin-bottom: 30px;
    }
    
    .olpPrioritiesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .olpNav {
        display: none;
    }
    
    .olpPrioritiesGrid {
        grid-template-columns: 1fr;
    }
    
    .features-block{
        flex-direction: column;
    }
    .olpTextImage{
        order: 1;
    }
    .olpBanner{
        background-position: left center;
        padding: 80px 0;
    }
    .olpTextContent h3{
        font-size: 28px;
    }
    .olpTextSection{
        padding: 40px 0;
    }
    .olpFaq, .olpPriorities{
        padding: 50px 0;
    }
    .olpTextContent{
        order: 2;
    }
    .olpTextImage img{
        max-width: 300px;
    }
    
    .olpFooterLinks a {
        margin: 10px 0;
    }
}