body {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f0f0f0;
}

h1 {
    text-align: center;
    color: #333;
}

/* Tab Bar Styling */
.tab-bar {
    background-color: #333;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.tab-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    float: left;
}

.tab-button:hover {
    background-color: #555;
}

.tab-button.active {
    background-color: #003366;
}

/* Tab Content Styling */
.tab-content {
    display: none;
    padding: 30px;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h2 {
    color: #000000;
    margin-top: 0;
}

p {
    line-height: 1.6;
    color: #555;
}
img {
  max-width: 50%;
  height: 50%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
