/* General Container Styles */
.container {
    min-height: 75vh;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.prime-welcome {
    min-height: 80vh;
    background-color: #1E1E2F;
    color: #fff;
    border-radius: 10px;
    font-family: 'Lora', serif;
}

/* Heading Styles */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
}

/* Paragraph Styles */
p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Call-to-Action Button Styles */
.cta-button {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
}

/* Flexbox Layout */
.row {
    display: flex;
    flex-wrap: wrap;
}
.column {
    flex: 1;
    padding: 10px;
}

/* Image Styles */
.image-search img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Fact Box Styles */
.fact-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); /* 3D effect */
    margin-top: 20px;
    background-color: #2A2A3B; /* Default color, can be overridden inline */
    position: relative; /* Ensure proper positioning */
    border-left: none; /* Reset any potential border-left issues */
}

/* Fact Box Heading Styles */
.fact-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFD700; /* Default color, can be overridden inline */
}

/* Fact Box Paragraph Styles */
.fact-box p, .fact-box ul {
    font-size: 16px;
    line-height: 1.4;
    color: #fff; /* Default color, can be overridden inline */
}
