/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 0.5rem;
}

/* Main content */
.main-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Collapsible sections */
.collapsible-section {
    border-bottom: 1px solid #f0f0f0;
}

.collapsible-section:last-child {
    border-bottom: none;
}

.section-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.section-header:hover {
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.2s ease;
    min-width: 24px;
    text-align: center;
}

.section-content {
    display: none;
    background-color: #fafbfc;
    border-top: 1px solid #f0f0f0;
}

.content-wrapper {
    padding: 2rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #555;
}

.content-wrapper strong {
    color: #2c3e50;
    font-weight: 500;
}

/* Specific section styles */
.values {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.values h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

.response-time {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.last-updated {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-header {
        padding: 1rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .section-header {
        padding: 1rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
}