/* Main Content */
.main {
    padding: 120px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the sections */
}
h1 {
    font-size: 3rem;
    font-weight: 200;
    color: #064469;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Section Styles */
.content-section {
    max-width: 800px; /* Restrict width for consistent layout */
    width: 100%; /* Ensure sections fill available space */
    margin-bottom: 2.5rem; /* Consistent spacing between sections */
    padding: 2rem;
    text-align: left;
    opacity: 0; /* Initial state for animation */
    transform: translateY(50px); /* Start with slight offset */
    transition: all 0.6s ease; /* Smooth animation */
}

/* Section Animation */
.content-section.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

/* Section Titles */
.content-section h2 {
    font-size: 2rem;
    font-weight: 200;
    color: #064469;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraph and List Styling */
.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.content-section ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
}

/* Link Styles */
.content-section a {
    color: #064469;
    font-weight: 500;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
    color: #0463a4;
}



/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px; /* Initially off-screen */
    display: flex; /* Ensure it's always flex for transition purposes */
    background-color: rgba(0, 0, 0, 0.5);
    color: white; /* Change this to ensure contrast */
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: right 0.3s ease-in-out; /* Add transition for right */
    z-index: 100; /* Ensure it's above other elements */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}