/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and font style */
body {
    font-family: 'Verdana', sans-serif;
    line-height: 2;
    background-color: #eaeaea;
}

/* Header style */
.header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #c5107d;
    color: #ffffff;
}

.logo span {
    font-size: 24px;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
}

.tab-link {
    text-decoration: none;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 18px;
    text-align: center;
}

.tab-link:hover {
    background-color: #092f96;
}

/* Section styling */
.tab-content {
    display: none; /* Hide all content sections by default */
    padding: 50px 20px;
    text-align: center;
}

.tab-content.active {
    display: block; /* Show the active tab content */
}

h1 {
    margin-bottom: 20px;
}

/* Default link color */
a {
  color: #000000; /* Blue color */
  text-decoration: none; /* Optional: Removes underline */
}

a:visited {
    color: inherit; /* Keeps the same color as the parent element */
    text-decoration: none; /* Removes underline if needed */
}

/* Hover effect */
a:hover {
  color: #b7bcd3; /* Slightly darker blue for hover effect */
  text-decoration: underline; /* Optional: Adds underline on hover */
}

/* Active (clicked) link */
a:active {
  color: #000000; /* Even darker blue for click effect */
}

/* Aligning paragraphs to the right and adding spacing */
p {
    text-align: left; /* Align text to the right */
    margin-bottom: 20px; /* Add space between paragraphs */
}

/* Footer styling */
footer {
    padding: 20px;
    background-color: #c5107d;
    color: #ffffff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    text-align: center;
    font-size: 14px;
}

/* Footer link styling */
footer a {
    color: #ffffff; /* White text color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make it bold if needed */
}

/* Footer link visited */
footer a:visited {
    color: #ffffff; /* Same color to maintain consistency */
}

/* Footer link hover effect */
footer a:hover {
    color: #b7bcd3; /* Light beige color for contrast */
    text-decoration: underline; /* Optional: Add underline on hover */
}

/* Footer link active (when clicked) */
footer a:active {
    color: #ffffff; /* Slightly darker color on click */
}