body {
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
    gap: 20px;
}
.tool-card {
    background-color: #f9f9f9;
    border: 1px solid #e1e4e8;
    padding: 20px;
    margin-top: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.tool-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}
h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 28px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    width: 100%;
}
.creative-btn {
    background-color: #6c5ce7 !important;
}
.office-btn {
    background-color: #00b894 !important;
}
.creative-btn:hover {
    background-color: #a29bfe !important;
}
.office-btn:hover {
    background-color: #55efc4 !important;
}
@media (max-width: 768px) {
    .container {
        margin-top: 20px;
        padding: 15px;
        width: 95%;
    }
    h2 {
        font-size: 22px;
        margin-top: 25px;
    }
    .tool-card{
        padding: 15px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    .container {
        animation: fadeInUp 0.8s ease-out;
}