/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

.page-container {
    position: relative;
    height: 100%;
    overflow-y: auto; /* Allow vertical scrolling */
}
.navbar {
    background-color: #f3f3f3; /* Soft light gray background */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px; /* Adjust the logo size */
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #555; /* Soft dark gray */
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff7f50; /* Soft orange for a cute touch */
}

.nav-links a.active {
    color: #ff7f50; /* Soft orange to match the hover color */
    font-weight: bold; /* Make the active link stand out */
    text-decoration: underline; /* Optional: underline the active link */
}

/* Strategies Page */
.strategies-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2a2a2a;
}

.strategies-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.strategy-card {
    background-color: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.strategy-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.strategy-card p {
    font-size: 1.1rem;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip {
    font-size: 2rem;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    width: 120px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.progress-section {
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 8px;
    width: 100%;
    height: 25px;
    margin-top: 20px;
}

.progress {
    height: 100%;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    line-height: 25px;
    border-radius: 8px;
    font-size: 1.1rem;
}


.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: rgb(245, 36, 36);
    text-decoration: none;
}

.footer a:hover {
    color: rgb(156, 103, 103);
    text-decoration: underline;
}