/* Global Settings */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Light background for the body */
    color: #333; /* Default text color */
}

h1, h2, h3, h4 {
    color: #333; /* Use dark text for all headings */
}

p, ul li {
    color: #555; /* Slightly lighter color for regular text */
}

/* Color Palette Integration */
.bg-pink {
    background-color: #2A4759 !important; /* Pink background for sections like header, footer */
}

.text-golden {
    color: #C4A11A !important; /* Golden Yellow for important text and highlights */
}

.text-muted {
    color: #6c757d !important;
}

.text-dark {
    color: #333 !important;
}

/* Body and Sections */
.hometable1 {
    background-color: #DDDDDD; /* Apply the pink background to this section */
    height: 100vh;
    padding: 20px;
    color: white; /* Light text on pink background */
}

.content {
    max-width: 650px;
    margin-top: 30px;
}

.content h1 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #fff; /* White color for headings on pink background */
}

.content p {
    font-size: 1.2rem;
    color: #f1f1f1; /* Light gray text for paragraphs */
}

ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

ul li span {
    color: #C4A11A; /* Golden yellow for check marks */
}

/* Image Section */
.image-container {
    position: relative;
    margin-top: 30px;
    background-color: #2A4759;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-overlay h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff; /* White text for the overlay */
    margin-bottom: 1rem;
}

.text-overlay p {
    font-size: 1.2rem;
    color: #fff; /* White text for the overlay */
}

/* Navbar */
.navbar-light {
    background-color: #2A4759; /* Pink navbar */
}

.navbar-light .navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff; /* White links */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #C4A11A; /* Golden yellow on hover */
}

/* Logo Size Fix */
.image_logo {
    height: 40px; /* Adjust the height of the logo */
    width: auto; /* Maintain aspect ratio */
}

/* Footer */
footer {
    background-color: #2A4759; /* Pink footer */
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    color: #fff; /* White text */
}

footer .m-0 {
    color: #C4A11A; /* Golden yellow footer text */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content {
        text-align: center;
    }
}
