/* Main Footer Styles - For all pages except ventures subpages */
footer {
    background: #1C323A;
    padding: 80px 5% 40px;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
}

.newsletter-section {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #E8EDF0;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    color: #333;
    outline: none;
}

.newsletter-form button {
    background: #FFFFFF;
    color: #1C323A;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form button:hover {
    background: #000;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-col .footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 14px;
    border: 1.5px solid #FFFFFF;
    border-radius: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-col .footer-contact-btn:hover {
    background: #FFFFFF;
    color: #1C323A;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}