* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('/images/banner3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

header {
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.text-content {
    max-width: 600px;
    text-align: left;
}

.text-content h1 {
    font-weight: 300;
    font-size: 2.0rem;
    color: #fff;
    margin-bottom: 1rem;
}

.text-content p {
    font-weight: 100;
    font-size: 2.0rem;
    color: #fff;
    line-height: 1.6;
}

/* Added class for bold text */
.bold {
    font-weight: 500; /* Bold weight for Source Sans Pro */
    color: #fff; /* Matches existing text color for consistency */
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

footer p {
    font-weight: 100;
    font-size: 0.9rem;
    color: #fff;
}

/* Class for links */
.link {
    font-weight: 500; /* Matches .bold for consistency */
    color: #fff; /* White font color */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.link:hover {
    color: #ff4600; /* Stays white on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-content h1 {
        font-size: 1.6rem;
    }

    .text-content p {
        font-size: 1.6rem;
    }

    /* Ensure bold text scales appropriately */
    .bold {
        font-size: 1.6rem;
    }
	
    .link {
        font-size: 1.6rem; /* Matches .text-content p */
        color: #fff; /* Ensure white font in smaller screens */
        text-decoration: none; /* Ensure no underline */
    }

    .logo {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 1.4rem;
    }

    .text-content p {
        font-size: 1.4rem;
    }

    .bold {
        font-size: 1.4rem;
    }

    .link {
        font-size: 1.4rem; /* Matches .text-content p */
        color: #fff; /* Ensure white font in smaller screens */
        text-decoration: none; /* Ensure no underline */
    }

    .logo {
        max-width: 180px;
    }
}