@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --text-main: #1f2937;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: var(--primary);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.main-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(203, 213, 225, 0.2);
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

/* Main Content */
main {
    flex: 1;
}

section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

/* New Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    border-color: var(--accent);
}

.card h3 {
    margin-top: 0;
    color: var(--accent);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.leader-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.leader-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.leader-affiliation {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.profile-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-info {
    flex: 1;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
    }
}

.partnership-steps {
    list-style: none;
    padding: 0;
}

.partnership-steps li {
    background: var(--bg-light);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.btn-contact {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-hover);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Styles */
footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 60px 20px 40px;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

a {
    transition: all 0.3s ease;
}

/* Compliance Page Styling */
.compliance-page ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.compliance-page li {
    margin-bottom: 12px;
    color: var(--text-main);
    position: relative;
    list-style-type: none;
    padding-left: 15px;
}

.compliance-page li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.compliance-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.compliance-page a:hover {
    text-decoration: underline;
}

.compliance-page p:first-of-type {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    section {
        margin: 30px 20px;
        padding: 25px;
    }
}