.mantra-section {
    padding: 60px 20px;
    text-align: center;
}
.mantra-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}
.mantra-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.mantras-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
    width: fit-content;
    margin: auto;
}
.mantra-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}
.mantra-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
.mantra-card p {
    font-size: 2rem;
    color: #666;
}
.mantra-card button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #2c3e50;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.mantra-card button:hover {
    background: #fecd06;
}