body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
    color: #222;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.search-box {
    width: 60%;
    max-width: 500px;
    margin: 0 auto 50px auto;
    display: flex;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #fff;
}

.search-box button {
    width: 60px;
    border: none;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

.quick {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
}

.sub {
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Box styling */
.box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.box a {
    display: block;
    margin-bottom: 8px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
}

.box a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .search-box {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    h1 {
        font-size: 28px;
    }
    .quick {
        font-size: 20px;
    }
    .sub {
        font-size: 14px;
    }
    .search-box {
        width: 90%;
    }
}
