* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Footer Base Styles */
.triviae-footer {
    background-color: #0c0c5a;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.triviae-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1800px;
    padding: 0 80px;
}

/* Left Section */
.triviae-left-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 300px;
}

.triviae-large-text {
    font-size: 200px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.triviae-about {
    width: 750px;
    line-height: 2;
    font-size: 20px;
}

/* Right Section */
.triviae-right-section {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.triviae-footer-column {
    flex: 1;
    text-align: left;
}

.triviae-footer-column.triviae-quick-links {
    max-width: 120px;
}

.triviae-footer-column.triviae-address {
    max-width: 300px;
}

.triviae-footer-column.triviae-social {
    max-width: 140px;
}

.triviae-footer-column h3 {
    font-size: 20px;
    white-space: nowrap;
    margin-bottom: 15px;
    color: #FFD700;
}

.triviae-address1 {
    font-size: 20px;
    margin-bottom: 20px;
}

.triviae-address2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.triviae-footer-column a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.triviae-footer-column a:hover {
    color: #FFD700;
}

/* Contact Us Styling */
.triviae-footer-contact-section {
    margin-top: 20px;
}


.triviae-footer-contact-section p {
    font-size: 20px;
    display: flex;
    margin-bottom: 10px;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
}


.triviae-footer-contact-section i {
    color: #FFD700;
}

/* Footer Bottom Divider */
.triviae-footer-divider {
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0.5;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* Footer Bottom */
.triviae-footer-bottom {
    display: flex;
    font-size: 20px;
    justify-content: center;
    width: 100%;
    color: white;
    padding: 10px 80px;
    max-width: 1800px;
}

.triviae-contact-link {
    width: 250px;
}
