.docsPage{
    width: 100vw;
    height: fit-content;
}
.docsPage-Video{
    margin-top: 6%;
    height: 50vh;
    width: 100%;
}

/* Set 60% width for larger screens */
.docsPage-Video video {
    width: 60%;
}


.docsPage-content{
    height: fit-content;
    width: 100%;
    margin-top: 20px;
}

.first::first-letter {
    font-size: 120%;
    font-weight: bold;
    color: #0F112A;
  }
  .docsPage-content p, .docsPage-content ul {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
}

.scroll-section {
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.docsPage-contact{
    width: 100%;
}
.docsPage-contact button{
    width: fit-content;
    background-color: #8BD005;
    color: white;
}
.docsPage-contact button:hover{
    background-color: #0F112A;
}

/* Set 90% width for smaller screens */
@media (max-width: 768px) {
    .docsPage-Video video {
        width: 90%;
    }
    .docsPage-Video{
        padding: 0;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .docsPage-Video video {
        width: 100%;
    }
    .docsPage-content{
        margin-top: 0 ;
    }
}