/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and font style */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header style */
.header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
}

.logo span {
    font-size: 24px;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    background-color: #d3c6b7;
}

.tab-link {
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    text-align: center;
}

.tab-link:hover {
    background-color: #555;
}

/* 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;
}

/* 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: #d3c6b7;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    text-align: center;
    font-size: 14px;
}
