.datarooms-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    text-align: center;
    padding: 2rem;
    margin-top:60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    max-width: 900px;
    margin-top: 1rem;
    color: #666;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-cta {
    max-width: 800px;
    margin-top: 1rem;
    color: #666;
    font-size: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 60px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
    padding-bottom: 150px;
  }

/* ChartCard */
.chart {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 10px;
}
.chart h3 {
text-align: center;
margin: 10px 0;
font-size: 1.1rem;
}
.chart-container {
width: 100%;
height: 300px;
}

