body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #FAF0E6; /* Creamy Off-White */
    /* Or a subtle pastel gradient background: */
    /* background: linear-gradient(135deg, #E6E6FA 0%, #FFDAB9 100%); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #5D5C61; /* Soft dark grey for text */
}

.app-container {
    width: 100%;
    max-width: 400px; /* Simulate phone width */
    height: 700px; /* Simulate phone height */
    background-color: #FFF8DC; /* Cornsilk - very light yellow pastel */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex; /* To help manage screen transitions */
    flex-direction: column;
}

.screen {
    display: none; /* Hidden by default */
    flex-grow: 1;
    padding: 25px;
    overflow-y: auto;
    animation: fadeIn 0.5s ease-in-out;
    background-color: #FFF8DC; /* Ensure screen bg color */
}

.screen.active {
    display: flex; /* Show active screen */
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    display: block;
    margin: 0 auto 20px auto;
    width: 100px; /* Adjust as needed */
}

.content-box {
    background-color: #ffffff; /* White content boxes for contrast */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    flex-grow: 1;
}


h2 {
    color: #D8BFD8; /* Dusty Rose */
    text-align: center;
    margin-bottom: 15px;
}

h3 {
    color: #98FB98; /* Mint Green (might need softer version like #B2DFDB) */
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    font-size: 1em;
    margin-bottom: 10px;
}

.quiz-question {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #E6E6FA1A; /* Very light lavender */
    border-radius: 8px;
}

.quiz-question p {
    margin-bottom: 8px;
    font-weight: bold;
}

button, .cta-button {
    background-color: #FFDAB9; /* Warm Peach */
    color: #5D5C61;
    border: none;
    padding: 12px 18px;
    border-radius: 25px; /* Pill shape */
    cursor: pointer;
    font-size: 1em;
    margin: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

button:hover, .cta-button:hover {
    background-color: #FFC0CB; /* Lighter Peach/Pink for hover */
    transform: translateY(-2px);
}

.cta-button {
    display: block;
    width: 80%;
    margin: 20px auto;
    background-color: #98FB98; /* Mint Green */
}
.cta-button:hover {
    background-color: #87CEEB; /* Sky blue on hover for CTA */
}


.navbar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #E6E6FA; /* Soft Lavender */
    border-top: 1px solid #D8BFD8; /* Dusty Rose border */
    width: 100%; /* Make navbar full width of container */
    position: sticky; /* If you want it to stick at bottom */
    bottom: 0;
}

.navbar button {
    background: none;
    border: none;
    color: #5D5C61; /* Darker text for readability */
    font-size: 0.8em;
    padding: 8px;
    cursor: pointer;
    font-weight: normal;
}
.navbar button:hover {
    color: #FFDAB9; /* Peach accent on hover */
    transform: none;
}

.circle-item, .job-listing, .certificate, .nearby-user, .post {
    background-color: #F0F8FF; /* Alice Blue - very light */
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #E6E6FA; /* Soft Lavender border */
    cursor: pointer; /* For items that can be clicked */
}
.circle-item:hover {
    border-color: #D8BFD8;
}

.ai-assist-note {
    font-style: italic;
    color: #98FB98; /* Mint */
    font-size: 0.9em;
    text-align: center;
    margin-top: 15px;
}

.safety-notice {
    border: 2px solid #FFDAB9; /* Peach border */
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    background-color: #FFF5EE; /* Seashell - very light warm */
}
.safety-notice h4 {
    color: #CD5C5C; /* Indian Red for emphasis */
    margin-top: 0;
}

/* Add more styles for specific elements as needed */