/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: white;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll; /* Allow scrolling but hide scrollbar */
}

body::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers (Chrome, Safari) */
}

body {
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* About Section */
.about-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 200px;
    background-color: transparent;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section {
    padding: 100px 20px;
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-content {
    max-width: 800px;
    text-align: left;
    z-index: 1;
    margin-left: 0;
}

.about-content h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3rem;
    color: #00ffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 0 20px;
        padding-top: 150px; /* Adds padding between navbar and content on mobile */
    }

    .about-content h1 {
        font-size: 2.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .pdf-viewer {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding-top: 180px; /* Further increase padding for very small devices */
        padding-left: 15px; /* Reduce left/right padding on very small screens */
        padding-right: 15px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }
}
