* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html, body {
    background-color: #EFEAF5; /*Change this value to change the body color*/
    line-height: 1.6;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-top: 100px;
    padding: 0 20px; /* Reduced side padding */
    margin-bottom: 50px;
}

.main-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}

.main-text h1 {
    font-size: 36px;
    color: #49495C; /*Change this value to change the font color of main content text header*/
    margin-bottom: 20px;
    text-align: left;
}

.main-text p {
    font-size: 18px;
    color: #49495C;
    white-space: normal; /* paragraph wraps normally */
    text-align: left;
}

.main-text a {
    display: inline; /* or just remove display property */
    white-space: nowrap; /* prevents link text from breaking */
    color: #49495C; /* optional: match your design */
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .width-1-5, .width-1-6 {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .width-1-4, .width-1-5, .width-1-6 {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin-left: 15px;
        margin-right: 15px;
    }

    .intro h1 {
        font-size: 28px;
    }

    .width-1-2, .width-1-3, .width-2-3, .width-1-4, .width-1-5, .width-1-6 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .width-1-2, .width-1-3, .width-2-3, .width-1-4, .width-1-5, .width-1-6 {
        width: 100%;
    }
}