/* base.css - Variables, Resets, and Utilities */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1E60A8;
    --primary-hover: #164a82;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-bg: #ffffff;
    --section-bg: #ffffff;
    --nav-height: 140px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.page-title-h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    text-align: center;
}

@media (max-width: 768px) {
    .page-title-h1 {
        font-size: 2.5rem;
    }
}

/* Page Layout Utilities */
.page-main-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding {
    padding: 80px 0;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

/* Grid Layouts */
.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.two-col-grid-start {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    align-items: start;
}

.rounded-img {
    width: 100%;
    border-radius: 15px;
}