body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfcfb;
    color: #334155;
}
.section-title {
    color: #0d9488;
}
.accent-bg {
    background-color: #0d9488;
}
.accent-text {
    color: #0d9488;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.packet {
    transition: all 1.5s ease-in-out;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    max-height: 50vh;
}
