/* ===== MAIN STYLES ===== */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Georgia', serif;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background-color: #ffffff;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
    font-size: 2rem;
    margin: 0 0 0.3rem 0;
    color: #2c3e50;
    font-weight: 600;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Layout Containers */
.content-wrapper {
    margin-left: 15%;
    max-width: 85%;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-wrapper.wide {
    max-width: 85%;
}

.page-section {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.page-section.active {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Form Elements */
textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #34495e;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}
