/* * P² Ventures Style Guide
 * Primary Blue: #2E5A88
 * Accent Amber: #F2A900
 * Light Gray BG: #F4F6F8
 * Dark Gray Text: #333333
 * Heading Font: 'Inter', sans-serif
 * Body Font: 'Lato', sans-serif
*/
body {
    font-family: 'Lato', sans-serif;
    color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: #2E5A88;
}

.accent-bg {
    background-color: #F2A900;
}

.accent-text {
    color: #F2A900;
}

.primary-bg {
    background-color: #2E5A88;
}

.primary-text {
    color: #2E5A88;
}

.light-gray-bg {
    background-color: #F4F6F8;
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F2A900;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #F2A900;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.outline-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #2E5A88;
    border: 2px solid #2E5A88;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.outline-button:hover {
    background-color: #2E5A88;
    color: white;
}

.nav-active {
    color: #F2A900;
}