body {
    font-family: 'Inter', sans-serif;
}

.chart-container { 
    position: relative; 
    width: 100%; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    height: 300px; 
    max-height: 400px; 
}

@media (min-width: 768px) { 
    .chart-container { 
        height: 350px; 
    } 
}

.modal-active {
    display: flex;
}

.testimonial-active {
    display: block;
}

#service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#service-modal.modal-active {
    display: flex;
}

#modal-content {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    max-width: 90%;
    width: 600px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

#home h1 {
    margin-top: 3rem; /* Adjust spacing as needed */
}

#home .container {
    padding-top: 4rem;
    align-items: flex-start;
}