/* Styling for ventures.php page */

.venture-container {
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Ensures the border-radius is respected by children */
}

.venture-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.venture-logo {
    max-height: 60px; /* Controls the logo size */
}

.venture-title h1 {
    margin: 0;
    color: #1e3a8a; /* Dark Blue */
    font-size: 2.5rem;
}

.venture-title h2 {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    font-weight: 400;
}

.venture-content {
    padding: 2rem;
    line-height: 1.7;
    color: #333;
}

.venture-content h2 {
    color: #333;
    font-size: 1.8rem;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 10px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.venture-content h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.venture-content p {
    margin-bottom: 1rem;
}

.venture-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}