/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.investor-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.investor-block {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investor-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.investor-block .date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
}

.investor-block h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.investor-block p {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.investor-block a {
    display: inline-block;
    color: #0073e6;
    text-decoration: none;
    font-size: 1em;
    margin-bottom: 10px;
}

.investor-block a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-heading {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.services a {
    color: #0073e6;
    text-decoration: none;
}

.services a:hover {
    text-decoration: underline;
}

.services div {
    margin-bottom: 10px;
}
