/* About Page Styles */
.about-wrapper {
    padding: 20px;
    min-height: 80vh;
    background-color: #f4f4f4;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    color: #333;
    line-height: 1.8;
    border-top: 5px solid #3fd5ba;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-container h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.about-container p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #555;
    text-align: left;
}

.about-container ul {
    margin-bottom: 1.5rem;
}

/* Custom Check List Style for Mission/Commitment */
.about-container ul.check-list {
    list-style: none;
    padding-left: 0;
}

.about-container ul.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #555;
}

.about-container ul.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #3fd5ba;
    font-weight: bold;
    font-size: 1.1rem;
}

.about-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-container a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Highlight Box for Disclaimer */
.disclaimer-box {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .about-container {
        padding: 20px;
        margin: 0;
    }

    .about-container h1 {
        font-size: 1.8rem;
    }

    .about-container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
}

/* Search Bar Styles */
.search-container {
    text-align: center;
    margin-bottom: 2rem;
}

.search-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 60%;
    max-width: 400px;
}

.search-button {
    padding: 10px 20px;
    background: #3fd5ba;
    color: white;
    border: 1px solid #3fd5ba;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    border-left: none;
    /* Prevent double border */
}

.search-button:hover {
    background: #2cb399;
}