/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

/* Left Column */
.left-column {
    width: 70%; /* 70% of the container's width */
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.left-column h1 {
	font-family: 'Quicksand', sans-serif;
    text-align: center;
            color: #001f3d;
            font-size: 24px;
            margin-bottom: 30px;
}
.left-column h2 {
	font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.left-column p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Right Column (Sidebar) */
.right-column {
    width: 28%; /* 28% of the container's width */
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
	font-family: 'Quicksand', sans-serif;
    color: #333;
}

.right-column h1 {
    text-align: center;
            color: #001f3d;
            font-size: 24px;
            margin-bottom: 30px;
}
}

.right-column h2 {
    font-size: 20px;
    margin-bottom: 10px;
	
}

.right-column ul {
    list-style-type: none;
    padding-left: 0;
	
}

.right-column ul li {
    margin-bottom: 10px;
	font-size: 15px;
            color: #001f3d;
            line-height: 1.6;
}

.right-column ul li a {
    text-decoration: none;
    color: #001f3d;
	
}

.right-column ul li a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack columns vertically on smaller screens */
        align-items: center;
    }

    .left-column, .right-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

