/* Portal Style - Informational Portal Look */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a3788;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #4a3788;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #4a3788;
    text-align: center;
}

header p {
    text-align: center;
    color: #4a5568;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-banner {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #4a3788;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #2d3748;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* Section Styling */
section {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: 15px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #4a3788;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.section-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

/* Story Cards */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ami-story {
    border-left-color: #764ba2;
}

.story-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #667eea;
}

.ami-icon {
    border-color: #764ba2;
}

.story-card h3 {
    color: #4a3788;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.story-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-section cite {
    color: #5b21b6;
    font-weight: 600;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 900px;
}

.cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    background: white;
    color: #4a3788;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 1.5rem;
    }
}
