
/* General body and heading styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #909bc7dd;
    line-height: 1.6;
}

h1 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #FCFAFA;
}



.intro-paragraph {
    text-align: center;
    margin-bottom: 40px;
    color: #EBD3D3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tab navigation styling */
.tab-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px auto;
    border-bottom: 2px solid #e0e0e0;
    max-width: 1200px;
}

.tab-container button {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #777;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-container button:hover {
    color: #00796b;
    border-bottom-color: #00796b;
}

.tab-container button.active {
    color: #00796b;
    border-bottom-color: #00796b;
}

/* Tab content styling */
.tab-content {
    display: none;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto 60px auto;
    max-width: 1200px;
}

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

.tab-content h2 {
    color: #004d40;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.tab-content h3 {
    color: #00796b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.tab-content p {
    margin-bottom: 15px;
    color: #444;
}



/* Responsive styling */
@media (max-width: 992px) {
    .tab-container {
        gap: 5px;
    }

    .tab-container button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .tab-content {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .tab-container {
        flex-direction: column;
        align-items: center;
    }

    .tab-container button {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .tab-content {
        padding: 20px;
    }

    h1 {
        font-size: 1.6em;
        margin-top: 40px;
    }

    .intro-paragraph {
        font-size: 0.95em;
        padding: 0 15px;
    }
}
